/* Contact Page Specific Styles */

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-page h1 {
    color: #ffd700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-intro {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.checkbox-group a {
    color: #ffd700;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Contact Info Section */
.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-section h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details small {
    color: #cccccc;
    font-size: 0.85rem;
}

.response-times {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border-top: 3px solid #4CAF50;
}

.response-times h3 {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.response-times ul {
    list-style: none;
    padding: 0;
}

.response-times li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.response-times li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.response-times strong {
    color: #ffd700;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
    color: #ffd700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #F44336;
    background: rgba(244, 67, 54, 0.1);
}

.field-error {
    color: #F44336;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
}

.form-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    font-weight: bold;
}

.form-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    font-weight: bold;
}

/* Loading State */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading button {
    background: #666;
    cursor: not-allowed;
}

/* Active Navigation */
.main-nav a.active,
.footer-links a.active {
    color: #ffd700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-page h1 {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 1rem 0;
    }
    
    .contact-form-section,
    .contact-info-section,
    .faq-section {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .contact-page h1 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
}

/* Animation for form submission */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success,
.form-error {
    animation: fadeInUp 0.5s ease;
}

/* Hover effects for interactive elements */
.contact-method,
.faq-item {
    transition: all 0.3s ease;
}

.contact-method:hover,
.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Focus styles for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .contact-form-section {
        display: none;
    }
    
    .contact-page {
        background: white;
        color: black;
    }
    
    .contact-page h1,
    .contact-page h2,
    .contact-page h3 {
        color: black;
    }
    
    .contact-page p,
    .contact-page li {
        color: black;
    }
}
