/* Contact Information Plugin Styles */

.ci-contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    min-height: auto;
}

.ci-contact-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 700px;
}

.ci-contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    text-align: left;
}

.ci-contact-method {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.ci-contact-method:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ci-contact-method-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.ci-contact-link {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ci-contact-link:hover {
    color: #dc3545;
    text-decoration: underline;
}

.ci-contact-availability {
    font-size: 14px;
    color: #999;
    margin: 6px 0 0 0;
}

.ci-contact-hours {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.ci-hours-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.ci-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ci-hours-list p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.ci-hours-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ci-contact-wrapper {
        padding: 25px;
    }

    .ci-contact-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .ci-contact-method {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .ci-contact-method-title {
        font-size: 16px;
    }

    .ci-contact-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ci-contact-container {
        padding: 20px 10px;
    }

    .ci-contact-wrapper {
        padding: 20px;
        border-radius: 8px;
    }

    .ci-contact-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .ci-contact-method {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .ci-contact-method-title {
        font-size: 15px;
    }

    .ci-contact-link {
        font-size: 14px;
    }

    .ci-contact-hours {
        margin-top: 30px;
        padding-top: 20px;
    }

    .ci-hours-title {
        font-size: 16px;
    }

    .ci-hours-list p {
        font-size: 13px;
    }
}
