/* CSS Variables for consistent theming */
:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary: #00bcd4;
    --accent: #ff9800;
    --light: #f8f9fa;
    --dark: #212121;
    --gray: #757575;
    --light-gray: #e0e0e0;
    --success: #4caf50;
    --error: #f44336;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f5f7fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #e68a00;
}

/* Animate on scroll and transitions */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

.btn, .btn-outline {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover, .btn-outline:hover {
    box-shadow: 0 4px 16px rgba(0,123,255,0.12);
    transform: translateY(-2px) scale(1.03);
}

/* Search Bar */
.site-search-form {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
.site-search-form input {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.site-search-form button {
    padding: 0.5rem 1rem;
    border: none;
    background: var(--primary, #007bff);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Notification */
.site-notification {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    z-index: 9999;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: opacity 0.3s;
}
.site-notification.success { background: #28a745; }
.site-notification.error { background: #dc3545; }
.site-notification.warning { background: #ffc107; color: #333; }

/* Booking Modal */
#bookingModal .modal-content {
    max-width: 400px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}
.carousel-btn {
    background: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover {
    background: #007bff;
    color: #fff;
}
#testimonialsGrid {
    min-width: 250px;
    max-width: 400px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .navbar-auth {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section {
        padding: 3rem 0;
    }
}