/* Contact Page Styles */

/* Page Header */
.contact-page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.contact-page-header .header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-page-header .tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* CTA Button in Header */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin: 30px 0;
    padding: 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: #999;
    font-size: 1.2rem;
}

.breadcrumb-item[aria-current="page"] {
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-page-header {
        padding: 40px 20px 30px;
    }

    .contact-page-header h1 {
        font-size: 1.8rem;
    }

    .contact-page-header .tagline {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .breadcrumb {
        margin: 20px 0;
    }
}

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

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    height: fit-content;
}

.contact-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-method {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    color: white;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.contact-link:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.contact-response-time {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.contact-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #a8ff78;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* FAQ Link Section */
.faq-link-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(240, 147, 251, 0.2);
}

.faq-link-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-link-section p {
    font-size: 1.1rem;
    margin: 0;
}

.inline-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.inline-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        order: 2;
    }

    .contact-form-card {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 1.5rem;
    }

    .faq-link-section {
        padding: 30px 20px;
    }

    .faq-link-section h3 {
        font-size: 1.3rem;
    }

    .faq-link-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px 15px 60px;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-header h1 {
        font-size: 1.7rem;
    }

    .contact-method {
        flex-direction: column;
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.contact-footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.legal-disclaimer {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
}

.legal-content {
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    border-radius: 5px;
}

.legal-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

.legal-content strong {
    font-weight: 600;
    color: #ffd700;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .legal-content {
        padding: 12px 15px;
    }

    .legal-content p {
        font-size: 0.8rem;
    }
}

