/* Contact Page Specific Styles */
.contact-header {
    margin-top: 100px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
    text-align: center;
}

.contact-header .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.contact-header .section-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.8));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.contact-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333333;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ffd700;
}

.contact-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

/* Email List Styles */
.email-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    text-align: left;
    transition: all 0.3s ease;
}

.email-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.email-label {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.email-address {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.email-address:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Social Links Styles */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateX(5px);
}

.social-link .social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.social-info {
    flex: 1;
    text-align: left;
}

.social-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.social-handle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 2px;
}

.social-link.twitter:hover { border-color: #1da1f2; }
.social-link.telegram:hover { border-color: #0088cc; }
.social-link.youtube:hover { border-color: #ff0000; }
.social-link.instagram:hover { border-color: #e4405f; }
.social-link.whatsapp:hover { border-color: #25d366; }

/* Office Information Styles */
.office-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.office-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.office-label {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.office-details {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.form-header .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.form-header .section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 2px solid #333333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.privacy-notice input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.privacy-notice label {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.privacy-link {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Newsletter Option */
.newsletter-option {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.newsletter-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.newsletter-option label {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #333333;
}

.form-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.8));
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq-question {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Contact Info */
.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    margin-bottom: 5px;
    color: #ffd700;
    font-weight: 600;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffd700;
}

/* Success/Error Messages */
.form-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: linear-gradient(145deg, #4CAF50, #66BB6A);
    color: #ffffff;
    border: 2px solid #4CAF50;
}

.form-message.error {
    background: linear-gradient(145deg, #f44336, #ef5350);
    color: #ffffff;
    border: 2px solid #f44336;
}

/* Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.form-loading::before {
    content: 'Sending message...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header .section-title {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .form-header .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .contact-header .section-title {
        font-size: 1.8rem;
    }
    
    .form-header .section-title {
        font-size: 1.7rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .email-item,
    .office-item {
        padding: 15px;
    }
    
    .privacy-notice,
    .newsletter-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

