/* ========================================
   CONTACT PAGE SIMPLE IMPROVEMENTS
   Clean and minimal contact info display
   ======================================== */

/* Contact Section */
.contact-section {
    padding: 40px 0;
}

/* Contact Content Container */
.contact-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Title */
.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

/* Contact Description */
.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Contact Info Card */
.contact-info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(105, 11, 186, 0.1);
}

/* Contact Icon */
.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(105, 11, 186, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon i {
    color: #690BBA;
    width: 28px;
    height: 28px;
}

/* Contact Details */
.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-details a {
    display: block;
    font-size: 15px;
    color: #690BBA;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #550A95;
    text-decoration: underline;
}

.contact-details p {
    font-size: 15px;
    color: #495057;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-details .small-text {
    font-size: 13px;
    color: #6c757d;
}

/* Contact Note */
.contact-note {
    background: rgba(105, 11, 186, 0.05);
    border-left: 4px solid #690BBA;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #495057;
    margin: 0;
}

.contact-note strong {
    color: #690BBA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-description {
        font-size: 15px;
    }

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

    .contact-info-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-content {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        width: 24px;
        height: 24px;
    }

    .contact-details h3 {
        font-size: 16px;
    }
}
