/* Custom Animations and Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

.selected {
    background-color: #ec4899 !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5) !important;
}

.service-card {
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    border-color: #ec4899;
}

.service-card.selected {
    background: linear-gradient(135deg, #fce7f3, #f3e8ff) !important;
    border-color: #ec4899 !important;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3) !important;
}

.time-slot {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.time-slot:hover {
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, #ec4899, #f472b6) !important;
    color: white !important;
    border-color: #be185d !important;
}

button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:active {
    transform: scale(0.98);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    button {
        min-height: 48px;
        min-width: 48px;
    }
}

button:focus,
input:focus {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #ec4899;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #db2777;
}
/* Mobile Responsive Fix */
@media (max-width: 640px) {
    * {
        margin: 0;
        padding: 0;
    }
    
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.25rem !important;
    }
    
    h3 {
        font-size: 1rem !important;
    }
    
    p {
        font-size: 14px !important;
    }
    
    button {
        font-size: 14px !important;
        padding: 12px 16px !important;
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
    
    .flex {
        flex-direction: column !important;
    }
    
    input, select {
        font-size: 16px !important;
        padding: 12px !important;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 8px !important;
    }
    
    .max-w-6xl {
        max-width: 100% !important;
        padding: 0 8px !important;
    }
    
    .max-w-4xl {
        max-width: 100% !important;
        padding: 0 8px !important;
    }
}
