/* 1. No end time for appointment booking */
.bs-dt .booking-ts div:last-child,
.bs-dt .booking-ts > span {
  display: none;
}
/*2
 * ENHANCED HERO SECTION STYLING
 * Purpose: Creates an attractive, animated hero section with gradient background
 * What it does:
 * - Adds purple gradient background matching your brand
 * - Creates floating animated dots in background
 * - Adds slide-in animations for text elements
 * - Improves typography and spacing
 * - Makes the welcome section more engaging and professional
 */
.hero-section, [class*="hero"] {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    padding: 80px 20px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated background shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

/* Main heading enhancement */
.hero-section h1, [class*="hero"] h1 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px !important;
    animation: slideInFromTop 1s ease-out;
}

@keyframes slideInFromTop {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Welcome text styling */
.hero-section p, [class*="hero"] p {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.9) !important;
    max-width: 600px;
    margin: 0 auto 30px auto !important;
    line-height: 1.6;
    animation: slideInFromBottom 1s ease-out 0.3s both;
}

@keyframes slideInFromBottom {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translate(0); }
}



/*4
 * ENHANCED BUTTON STYLING
 * Purpose: Creates modern, attractive buttons with hover effects
 * What it does:
 * - Adds gradient background matching your brand colors
 * - Creates smooth hover animations with lift effect
 * - Adds subtle glow effect with box shadows
 * - Includes shine animation on hover
 * - Styles both primary and secondary buttons
 * - Improves button accessibility and visual feedback
 */
.btn, button, [class*="book"] button, .book-now {
    background: linear-gradient(135deg, #8B5CF6, #A855F7) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    color: white !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
}

.btn::before, button::before, [class*="book"] button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover, button:hover, [class*="book"] button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important;
}

.btn:hover::before, button:hover::before, [class*="book"] button:hover::before {
    left: 100%;
}

/* Learn More buttons */
.learn-more, [class*="learn"] {
    background: transparent !important;
    border: 2px solid #8B5CF6 !important;
    color: #8B5CF6 !important;
}

.learn-more:hover, [class*="learn"]:hover {
    background: #8B5CF6 !important;
    color: white !important;
}
/*5
 * ENHANCED SEARCH BAR STYLING
 * Purpose: Improves the search functionality appearance and usability
 * What it does:
 * - Creates rounded, modern search input design
 * - Adds focus states with purple brand color
 * - Includes subtle shadows for depth
 * - Adds search icon positioning
 * - Improves overall search experience
 * - Makes search bar more prominent and user-friendly
 */
/*
.search-bar, [class*="search"] input, input[placeholder*="search" i] {
    border-radius: 25px !important;
    border: 2px solid #E5E7EB !important;
    padding: 12px 20px 12px 45px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.search-bar:focus, [class*="search"] input:focus, input[placeholder*="search" i]:focus {
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
    outline: none !important;
}

/* Search icon enhancement */
.search-bar::before, [class*="search"]::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
} 
*/
/*6
 * FORM VALIDATION STYLING
 * Purpose: Provides visual feedback for form field validation
 * What it does:
 * - Adds green styling for valid form fields
 * - Adds red styling for invalid form fields
 * - Includes success and error indicators
 * - Improves user experience during form completion
 * - Provides immediate visual feedback
 * - Helps users understand form requirements
 */
input.valid, select.valid, textarea.valid {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

input.invalid, select.invalid, textarea.invalid {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Success and error indicators */
input.valid::after {
    content: '✓';
    position: absolute;
    right: 10px;
    color: #10B981;
    font-weight: bold;
}

input.invalid::after {
    content: '!';
    position: absolute;
    right: 10px;
    color: #EF4444;
    font-weight: bold;
}

/*
 * MOBILE OPTIMIZATION STYLES
 * Purpose: Ensures website looks great and functions well on mobile devices
 * What it does:
 * - Adjusts font sizes for smaller screens
 * - Optimizes spacing and padding for mobile
 * - Improves touch targets for better mobile interaction
 * - Stacks elements vertically when needed
 * - Ensures all elements are easily accessible on mobile
 * - Maintains visual hierarchy on smaller screens
 */
@media (max-width: 768px) {
    .hero-section h1, [class*="hero"] h1 {
        font-size: 2.5rem !important;
    }
    
    .service-card, [class*="service"] {
        margin-bottom: 15px !important;
    }
    
    .btn, button, [class*="book"] button {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Improve touch targets */
    .service-card, [class*="service"] {
        min-height: 44px !important;
    }
    
    /* Stack elements vertically on mobile */
    .service-details {
        flex-direction: column !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px !important;
    }
    
    .hero-section h1, [class*="hero"] h1 {
        font-size: 2rem !important;
    }
    
    .hero-section p, [class*="hero"] p {
        font-size: 1rem !important;
    }
}
