/* css/styles.css */

/* Core & Smooth Scroll */
html { scroll-behavior: smooth; }

/* --- SHARED ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.animate-float { animation: float 8s ease-in-out infinite; }

/* Soft Blob Animation (Homepage) */
@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 10s infinite; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* Pulse Slow */
@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Shimmer/Shine Effect */
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.animate-shine {
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

/* Fade In for Filtered Items */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

/* Bounce Slow */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* --- UTILITIES --- */
/* Hide Scrollbar */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* Glass Effects */
.shadow-glass {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}
.shadow-neon {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3);
}
.shadow-glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.shadow-premium {
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
}

/* Navbar Scrolled State */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* --- SERVICE PAGE SPECIFIC --- */
/* Elegant Button Hover */
.btn-elegant {
    position: relative;
    overflow: hidden;
}
.btn-elegant::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-elegant:hover::after {
    left: 100%;
}

/* Texture Pattern */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* css/styles.css */

/* Core & Smooth Scroll */
html { scroll-behavior: smooth; }

/* --- SHARED ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.animate-float { animation: float 8s ease-in-out infinite; }

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

/* Pulse Slow */
@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* --- UTILITIES --- */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* Shadow Effects */
.shadow-glass { box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); }
.shadow-glow { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
.shadow-premium { box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04); }
.shadow-soft { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); }

/* Navbar Scrolled State */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* --- COMPONENT STYLES --- */

/* Elegant Button Hover */
.btn-elegant {
    position: relative;
    overflow: hidden;
}
.btn-elegant::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-elegant:hover::after { left: 100%; }

/* Card Image Hover Zoom (Used in Nannies & Services) */
.service-card:hover .service-img,
.nanny-card:hover .nanny-img {
    transform: scale(1.05);
}

/* Badge Gradient (Used in Cards) */
.badge-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

/* Texture Pattern */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* css/styles.css */

/* Core & Smooth Scroll */
html { scroll-behavior: smooth; }

/* --- SHARED ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.animate-float { animation: float 8s ease-in-out infinite; }

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

/* --- UTILITIES --- */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* Shadow Effects */
.shadow-glass { box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); }
.shadow-glow { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
.shadow-premium { box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04); }
.shadow-soft { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); }

/* Navbar Scrolled State */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* --- COMPONENT STYLES --- */

/* Elegant Button Hover */
.btn-elegant {
    position: relative;
    overflow: hidden;
}
.btn-elegant::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-elegant:hover::after { left: 100%; }

/* Card Image Hover Zoom */
.service-card:hover .service-img,
.nanny-card:hover .nanny-img {
    transform: scale(1.05);
}

/* Badge Gradients */
.badge-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}
.badge-gradient-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
}

/* Texture Pattern */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* css/styles.css */

/* Core & Smooth Scroll */
html { scroll-behavior: smooth; }

/* --- SHARED ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.animate-float { animation: float 8s ease-in-out infinite; }

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

/* --- UTILITIES --- */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Default Blue Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* Amber Scrollbar (For Commercial Page) */
.scrollbar-amber::-webkit-scrollbar { width: 4px; }
.scrollbar-amber::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.scrollbar-amber::-webkit-scrollbar-thumb { background: rgba(217, 119, 6, 0.3); border-radius: 10px; }

/* Shadow Effects */
.shadow-glass { box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); }
.shadow-glow { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
.shadow-premium { box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04); }
.shadow-soft { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); }

/* Navbar Scrolled State */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* --- COMPONENT STYLES --- */

/* Elegant Button Hover */
.btn-elegant {
    position: relative;
    overflow: hidden;
}
.btn-elegant::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-elegant:hover::after { left: 100%; }

/* Card Image Hover Zoom */
.service-card:hover .service-img,
.nanny-card:hover .nanny-img {
    transform: scale(1.05);
}

/* Badge Gradients */
.badge-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}
.badge-gradient-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
}
.badge-gradient-amber {
    background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
}

/* Texture Pattern */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* css/styles.css */

/* Core & Smooth Scroll */
html { scroll-behavior: smooth; }

/* --- SHARED ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.animate-float { animation: float 8s ease-in-out infinite; }

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

/* --- UTILITIES --- */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Default Blue Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* Amber Scrollbar */
.scrollbar-amber::-webkit-scrollbar { width: 4px; }
.scrollbar-amber::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.scrollbar-amber::-webkit-scrollbar-thumb { background: rgba(217, 119, 6, 0.3); border-radius: 10px; }

/* Navy Scrollbar (For Outsourcing Page) */
.scrollbar-navy::-webkit-scrollbar { width: 4px; }
.scrollbar-navy::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.scrollbar-navy::-webkit-scrollbar-thumb { background: rgba(30, 41, 59, 0.3); border-radius: 10px; }

/* Shadow Effects */
.shadow-glass { box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); }
.shadow-glow { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
.shadow-premium { box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04); }
.shadow-soft { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); }

/* Navbar Scrolled State */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* --- COMPONENT STYLES --- */

/* Elegant Button Hover */
.btn-elegant {
    position: relative;
    overflow: hidden;
}
.btn-elegant::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-elegant:hover::after { left: 100%; }

/* Card Image Hover Zoom */
.service-card:hover .service-img,
.nanny-card:hover .nanny-img {
    transform: scale(1.05);
}

/* Badge Gradients */
.badge-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}
.badge-gradient-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
}
.badge-gradient-amber {
    background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
}
/* Navy Gradient not needed as default blue works well, but keeping structure clean */

/* Texture Pattern */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}