/* Contact Page Specific Styles */

/* Full width layout */
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Active Navigation Link */
.nav-menu a.active,
.mobile-nav-menu a.active {
    color: #2b6ebc !important;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(
        135deg,
        rgba(43, 110, 188, 0.1) 0%,
        rgba(43, 110, 188, 0.05) 100%
    );
    padding: 100px 0 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    background: #e6eef7 !important;
    color: #2b6ebc !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.contact-hero-description {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Information Section */
.contact-info {
    padding: 120px 0;
    background: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: border-color 0.3s ease;
    border: 2px solid #e8e8e8;
}

.contact-info-card:hover {
    border-color: #2b6ebc !important;
}

.contact-info-icon {
    background: linear-gradient(135deg, #2b6ebc, #3880d6);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(43, 110, 188, 0.3);
}

.contact-info-card h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.contact-info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.form-header {
    margin-bottom: 40px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    background: #d9e5f2 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.form-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.form-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6ebc !important;
    box-shadow: 0 0 0 3px rgba(43, 110, 188, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2b6ebc !important;
}

.submit-btn {
    background: linear-gradient(135deg, #2b6ebc 0%, #245a9e 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(43, 110, 188, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 110, 188, 0.4);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Contact Form Right Side */
.contact-map {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 60px 0 40px 0;
    border: 1px solid #e0e0e0;
}

.map-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
}

.map-address p {
    font-size: 14px;
    color: #888;
    margin: 0 0 5px 0;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.feature-icon {
    background: #2b6ebc !important;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    background: #e6eef7 !important;
    color: #2b6ebc !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.faq-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #333;
    font-weight: bold;
}

.faq-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

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

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    color: #2b6ebc !important;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 0 30px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b6ebc 0%, #245a9e 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-weight: bold;
    color: white;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-primary {
    background: white !important;
    color: #2b6ebc !important;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background: #f0f0f0 !important;
    color: #2b6ebc !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-container,
    .container {
        padding: 0 50px;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-map {
        margin: 40px 0 30px 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px 0;
    }

    .contact-hero-container,
    .container {
        padding: 0 40px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-description {
        font-size: 18px;
    }

    .contact-info,
    .contact-form-section,
    .faq-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-title,
    .faq-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-map {
        margin: 30px 0 25px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contact-hero-container,
    .container {
        padding: 0 25px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .form-title,
    .faq-title {
        font-size: 28px;
    }

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

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 18px;
    }
}
