/* ==========================================================================
   Pet Shop Premium - Custom Styles
   ========================================================================== */

/* --- Base & Resets --- */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Header Scroll Effect --- */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(241, 245, 249, 1);
}

/* --- Glassmorphism --- */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Animations --- */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-element {
    animation: float 4s ease-in-out infinite;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC; 
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10B981; 
}

/* --- Microinteractions --- */
.service-card {
    position: relative;
    top: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    top: -8px;
    border-color: #10B981;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #10B981;
    transition: width 0.4s ease;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.service-card:hover::after {
    width: 100%;
}

.diff-card {
    transition: all 0.3s ease;
}

.diff-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.step-card {
    transition: all 0.3s ease;
}

.step-card:hover h3 {
    color: #10B981;
}

/* --- Image Overlays --- */
.gallery-item {
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
    pointer-events: none;
    border-radius: 1rem;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* --- Accordion Transitions --- */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}