/* ===== Contact Page Styles ===== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.95)), 
                var(--bg-image);
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding: 120px 0 80px;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.contact-stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-stat-content {
    display: flex;
    flex-direction: column;
}

.contact-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
}

.contact-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.contact-hero-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.contact-hero-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--bg-light);
}

.section-title-left {
    text-align: left;
}

.section-title-left:after {
    left: 0;
    transform: none;
}

.contact-info-sidebar {
    position: sticky;
    top: 120px;
}

.contact-info-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-method-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-method-detail {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-method-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.contact-method-action:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.business-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.business-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.business-hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.business-hour-day {
    color: var(--text-color);
    font-weight: 500;
}

.business-hour-time {
    color: var(--text-color);
    font-weight: 600;
}

.business-hour-closed {
    color: var(--primary-color);
    font-style: italic;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.form-subtitle {
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.form-footer small {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Contact Map Section */
.contact-map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #F8F9FA 100%);
}

.location-info {
    height: 100%;
}

.location-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border-color);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.location-address {
    margin-bottom: 2rem;
}

.location-address p {
    color: var(--text-color);
    line-height: 1.7;
}

.location-address strong {
    color: var(--primary-color);
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.location-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-instructions {
    background: rgba(211, 47, 47, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-instructions i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-instructions p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

.map-container-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 100%;
}

.map-frame {
    border: none;
    display: block;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.accordion {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-bottom: none;
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.accordion-button {
    background-color: var(--card-bg);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--card-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D32F2F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D32F2F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-question {
    flex: 1;
}

.accordion-body {
    padding: 2rem;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-light);
}

.accordion-body h6 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.accordion-body ul, .accordion-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.accordion-body table {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-body table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-color: var(--primary-dark);
}

.accordion-body table td {
    border-color: var(--border-color);
}

.accordion-body .alert {
    background-color: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
    color: var(--text-color);
}

.accordion-body .alert i {
    color: var(--primary-color);
}

.faq-cta {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 2px dashed var(--border-color);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero-stats {
        gap: 2rem;
    }
    
    .contact-stat-item {
        flex: 0 0 calc(50% - 2rem);
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-method-card {
        padding: 1.25rem;
    }
    
    .location-card {
        padding: 2rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-stat-item {
        flex: 0 0 100%;
        max-width: 300px;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-bottom: 3rem;
    }
    
    .location-card {
        margin-bottom: 2rem;
    }
    
    .faq-cta {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-stat-item i {
        font-size: 2.5rem;
    }
    
    .contact-stat-number {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-method-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .business-hour-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
    }
    
    .faq-cta {
        padding: 1.5rem;
    }
}