/* Contact Page Unique Styling */

/* Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.1);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    padding: 2rem 0;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-title .highlight {
    display: block;
    color: #ff6b35;
    font-size: 4rem;
}

.contact-hero-title .subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #e8f4fd;
    margin-top: 0.5rem;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: #e8f4fd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #e8f4fd;
    margin-top: 0.5rem;
}

.contact-hero-image {
    position: relative;
    text-align: center;
}

.contact-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    margin-right: 0.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Breadcrumb Minimal */
.breadcrumb-minimal {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-minimal .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #6c757d;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: #ff6b35;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.phone-card:hover {
    border-color: #28a745;
}

.email-card:hover {
    border-color: #007bff;
}

.location-card:hover {
    border-color: #ff6b35;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.phone-card .contact-card-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.email-card .contact-card-icon {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
}

.location-card .contact-card-icon {
    background: linear-gradient(135deg, #ff6b35, #fd7e14);
    color: white;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-card-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
}

.contact-link {
    display: block;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b35;
}

.contact-link.primary {
    font-size: 1.3rem;
    color: #28a745;
}

.contact-hours, .response-time, .service-area {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-hours i, .response-time i, .service-area i {
    margin-right: 0.5rem;
    color: #ff6b35;
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
}

/* Why Contact Us Section */
.why-contact-us {
    padding: 5rem 0;
    background: white;
}

.why-contact-content {
    padding-right: 2rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35, #fd7e14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-stats-visual {
    padding-left: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.2);
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: #e8f4fd;
    margin-top: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Form Styling */
.contact__form {
    margin-top: 2rem;
}

.contact__form .form-grp {
    margin-bottom: 1.5rem;
}

.contact__form label {
    display: block;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #495057;
}

.contact__form input[type="text"]:focus,
.contact__form input[type="email"]:focus,
.contact__form input[type="tel"]:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

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

.contact__form .btn {
    background: linear-gradient(135deg, #ff6b35, #fd7e14);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.contact__form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #fd7e14, #ff6b35);
}

.contact__form .btn:active {
    transform: translateY(0);
}

.form_error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

#formMessage {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Section */
.contact-faq {
    padding: 5rem 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid #e9ecef;
}

.faq-content {
    padding: 1.5rem 2rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-title .highlight {
        font-size: 3rem;
    }
    
    .contact-hero-title .subtitle {
        font-size: 1.4rem;
    }
    
    .contact-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .why-contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-stats-visual {
        padding-left: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        text-align: center;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-title .highlight {
        font-size: 2.5rem;
    }
    
    .contact-hero-title .subtitle {
        font-size: 1.2rem;
    }
    
    .contact-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .why-contact-content {
        padding: 2rem 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .floating-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 1rem 1.5rem;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Improvements */
.contact-card:focus-within {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .contact-hero,
    .contact-faq {
        display: none;
    }
    
    .contact-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
