/* Contact Page Styles - Minimalist Black Design */

/* Page Header */
.page-header {
    background: var(--black);
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-page {
    padding: 80px 0;
    background-color: #fff;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.separator {
    width: 60px;
    height: 2px;
    background-color: var(--black);
    margin: 15px auto 25px;
}

.center-separator {
    margin: 15px auto 25px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-form-container {
    width: 100%;
}

/* Contact Cards */
.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border-left: 2px solid var(--black);
}

.contact-card:hover {
    transform: translateX(5px);
    background-color: #f2f2f2;
}

.contact-icon {
    font-size: 20px;
    color: var(--black);
    margin-right: 20px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: var(--black);
}

.contact-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-details p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Social Connect */
.social-connect {
    grid-column: span 2;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 0;
    box-shadow: none;
    border-left: 2px solid var(--black);
}

.social-connect h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--black);
    border-radius: 0;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
}

.social-icon:hover {
    background-color: var(--black);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 35px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    border: 1px solid #eee;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--black);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #222;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
    outline: none;
    box-shadow: none;
    background-color: #fff;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #777;
    font-size: 0.85rem;
}

.required {
    color: #e74c3c;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.btn-primary {
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-secondary {
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn::after {
    background: var(--black);
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    transform-origin: top center;
    transform: scale3d(1, 0, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.error-text {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-group.has-error label {
    color: #dc3545;
}

/* Success and error messages */
.success-message,
.error-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0;
    font-weight: 500;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border-left: 3px solid #28a745;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin-top: 30px;
    border: 1px solid #eee;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--black);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    flex: 1;
    letter-spacing: 0.5px;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 0;
    background-color: transparent;
    color: var(--black);
    transition: all 0.3s ease;
    border: 1px solid var(--black);
}

.faq-question:hover .faq-toggle {
    background-color: var(--black);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-question {
    background-color: #f9f9f9;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-item.active .faq-toggle {
    background-color: var(--black);
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.cta-section::before {
    content: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: none;
    border: 1px solid #eee;
}

.cta-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2rem;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-info-section .section-header {
    margin-bottom: 50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-connect {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-container {
        gap: 30px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container, .contact-info {
        min-width: 100%;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        text-align: center;
    }
} 