/* Contact Page Styles
   Hero and header styles are inherited from blog.css */

.contact-content-area {
    background: #f8fafc;
    min-height: 60vh;
    padding: 48px 0 80px;
}

.contact-content-area .container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Smaller hero title (matches FAQ) */
.blog-hero .blog-hero-title {
    font-size: clamp(24px, 4vw, 32px);
}

.blog-hero .container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Intro section */
.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.contact-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    max-width: 640px;
    margin: 0 auto;
}

/* Contact cards grid */
.contact-cards-grid {
    gap: 0;
}

.contact-cards-grid > [class*="col-"] {
    padding-bottom: 24px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.25s;
}

.contact-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: #6D28D9;
}

.contact-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
}

.contact-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #1e293b;
    margin: 0 0 4px;
    font-weight: 500;
}

.contact-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #6D28D9;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.contact-card-link:hover {
    color: #5B21B6;
    text-decoration: underline;
}

.contact-card-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-content-area {
        padding: 32px 0 48px;
    }

    .contact-intro {
        margin-bottom: 28px;
    }

    .contact-intro-title {
        font-size: 1.35rem;
    }

    .contact-intro-text {
        font-size: 0.95rem;
    }

    .contact-cards-grid > [class*="col-"] {
        padding-bottom: 16px;
    }

    .contact-card {
        padding: 22px 18px;
    }
}
