/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

/* Active Nav Link */
.nav-links a.active {
    color: #ff2a2a;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content {
    width: 80%;
    margin: 0 auto;
}

.breadcrumb {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: #aaa;
}

/* Contact Cards Section */
.contact-cards-section {
    background: white;
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-cards-container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    display: block;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 42, 42, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    color: #ff2a2a;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

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

/* Contact Main Section */
.contact-main-section {
    background: #f8f8f8;
    padding: 100px 0;
}

.contact-main-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-form-wrapper {
    flex: 1.2;
    background: white;
    padding: 50px;
    border-radius: 20px;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    color: #333;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus {
    outline: none;
    border-color: #ff2a2a;
    background: white;
}

.contact-form-full select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn-full {
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    background: #ff2a2a;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn-full:hover {
    background: #e02020;
    transform: translateY(-2px);
}

/* Map Wrapper */
.contact-map-wrapper {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
}

.office-info {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.office-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.office-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

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

.faq-container {
    width: 80%;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff2a2a;
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: #111;
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    width: 80%;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 18px;
    color: #888;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #ff2a2a;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e02020;
    transform: translateY(-3px);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 50px;
    }

    .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .page-header-content,
    .contact-cards-container,
    .contact-main-container,
    .faq-container,
    .cta-container {
        width: 90%;
    }

    .contact-cards-section {
        padding: 60px 0;
        margin-top: 0;
    }

    .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-container {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-form-wrapper h2 {
        font-size: 30px;
    }

    .faq-header h2 {
        font-size: 36px;
    }

    .cta-container h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-cards-container {
        grid-template-columns: 1fr;
    }

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

    .contact-main-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 26px;
    }

    .form-row {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-item {
        padding: 25px;
    }

    .cta-container h2 {
        font-size: 26px;
    }

    .cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}
