/* Contact Page Specific Styles */

.contact-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Contact Hero Section */
.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.contact-hero p {
    color: var(--medium-gray);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid #E0E0E0;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px) scale(1.02);
}

.contact-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 200, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
}

.contact-icon i {
    width: 36px;
    height: 36px;
    stroke-width: 1.5px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.contact-card p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-all;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.08), rgba(245, 134, 52, 0.08));
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--dark-blue);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.info-box li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Response Time Box */
.response-time {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.1), rgba(0, 200, 150, 0.05));
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.response-time h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.response-time p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    margin: 0;
}

/* Additional Resources Section */
.contact-container > div:last-of-type {
    margin-top: 4rem;
    text-align: center;
}

.contact-container > div:last-of-type h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.contact-container > div:last-of-type > div {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-container > div:last-of-type a {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-container > div:last-of-type a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-container > div:last-of-type a:last-child {
    background: var(--primary-color);
    color: var(--white);
}

.contact-container > div:last-of-type a:last-child:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .info-box,
    .response-time {
        padding: 1.5rem;
    }

    .contact-container > div:last-of-type > div {
        flex-direction: column;
        align-items: center;
    }

    .contact-container > div:last-of-type a {
        width: 100%;
        max-width: 300px;
    }
}
