/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* Book Now button in mobile menu */
    .nav-links a[href="book-now.html"] {
        margin-top: 1rem;
        text-align: center;
        animation: none; /* Remove pulse animation on mobile for better performance */
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
