/* Dental Site Helper - Frontend Styles */

/* Clickable Phone Link Styles */
.phone-link {
    color: #0284c7 !important;
    font-weight: 600;
    text-decoration: none !important;
    border-bottom: 2px solid #bae6fd;
    transition: all 0.2s;
    cursor: pointer;
}

.phone-link:hover {
    color: #0369a1 !important;
    border-bottom-color: #0284c7;
}

/* Phone Button Styles */
.phone-button {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0284c7, #14b8a6) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.4);
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0284c7, #14b8a6) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 14px 16px;
    }
    
    .faq-answer > div {
        padding: 0 16px 14px 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 24px;
    }
}

