/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero */
.contact-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 900px;
}

.contact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

/* Quick Contact Cards */
.quick-contact {
    padding: 60px 0;
    background: var(--dark-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.whatsapp-card::before { background: #25D366; }
.email-card::before { background: var(--gold); }
.telegram-card::before { background: #0088cc; }
.livechat-card::before { background: #4a7a9c; }

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.whatsapp-card .card-icon { color: #25D366; }
.email-card .card-icon { color: var(--gold); }
.telegram-card .card-icon { color: #0088cc; }
.livechat-card .card-icon { color: #4a7a9c; }

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0;
    color: var(--gold);
    word-break: break-all;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25D366;
    color: #25D366;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    margin: 10px 0;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: var(--dark);
}

.btn-email {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    margin: 10px 0;
}

.btn-email:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-telegram {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid #0088cc;
    color: #0088cc;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    margin: 10px 0;
}

.btn-telegram:hover {
    background: #0088cc;
    color: white;
}

.btn-livechat {
    background: rgba(74, 122, 156, 0.1);
    border: 1px solid #4a7a9c;
    color: #4a7a9c;
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.status-dot.offline {
    background: #95a5a6;
}

/* Main Contact Area */
.contact-main {
    padding: 80px 0;
    background: var(--dark-deep);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.info-description {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-details {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.info-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

.social-links {
    margin: 40px 0;
}

.social-links h4 {
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.support-quote {
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-md);
    padding: 25px;
    border-left: 4px solid var(--gold);
    margin-top: 30px;
}

.support-quote i {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.support-quote p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

.quote-author {
    color: var(--gold);
    font-weight: 600;
    margin-top: 10px;
}

/* Contact Form */
.contact-form-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--gold);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group label i {
    color: var(--gold);
    margin-right: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.form-group select option {
    background: var(--dark-card);
    color: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.checkbox-group label {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.honeypot {
    display: none;
}

.submit-btn {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    border: none;
    padding: 18px 30px;
    border-radius: 60px;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
}

.submit-btn:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-footer i {
    color: var(--gold);
    margin-right: 5px;
}

/* Support Features */
.support-features {
    padding: 80px 0;
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Availability Section */
.availability-section {
    padding: 80px 0;
    background: var(--dark-deep);
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.availability-card {
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.availability-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.availability-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.availability-card ul {
    list-style: none;
}

.availability-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.availability-card li:last-child {
    border-bottom: none;
}

.availability-card li span {
    color: white;
}

.status-online {
    color: #2ecc71 !important;
}

.status-online i {
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: var(--dark-light);
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background: var(--dark-card);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question span i {
    color: var(--gold);
    margin-right: 12px;
}

.faq-question i.fa-chevron-down {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
}

.faq-more a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.faq-more a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--dark-deep);
}

.map-content {
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.map-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.map-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.world-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.world-stat {
    text-align: center;
}

.world-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.world-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(145deg, var(--dark-card), #1a1f2a);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: var(--transition);
    border: 2px solid transparent;
}

.back-to-top:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards,
    .features-grid,
    .availability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-cards,
    .features-grid,
    .availability-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}