/* Additional custom styles — most styling is in index.html for single-file efficiency */

/* Smooth focus visible outlines */
*:focus-visible {
    outline: 2px solid #0d9488;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(13, 148, 136, 0.2);
    color: #0f766e;
}

/* Print styles */
@media print {
    .hero-section, .cta-section {
        min-height: auto;
        padding: 2rem 0;
    }
    .hero-bg, .cta-section::before {
        display: none;
    }
    .service-card, .contact-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}
