/* Custom styles for Frank's Plumbing Repairs */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Click-to-call button hover animation */
a[href^="tel:"] {
    transition: transform 0.2s ease;
}

a[href^="tel:"]:hover {
    transform: scale(1.05);
}

/* Form focus states */
input:focus, textarea:focus {
    outline: none;
}

/* Mobile tap highlight */
* {
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Print styles */
@media print {
    header, footer, nav {
        display: none;
    }
}
