/* =============================================
   Parijat Nursing Care - Theme Styles
   ============================================= */

/* Material Symbols Outlined */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Body */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fbf9f5;
    color: #1b1c1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
}

/* No Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Navigation Dropdown */
.nav-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}
.nav-group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-group:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Responsive Headings */
@media (max-width: 640px) {
    .hero-heading { font-size: 2.25rem !important; }
    .section-heading { font-size: 1.875rem !important; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-panel.active {
    transform: translateX(0);
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-submenu.open {
    max-height: 400px;
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,62,111,0.1);
}

/* Glass Badge */
.glass-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
}

/* =============================================
   Blog Detail Article Styles
   ============================================= */
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003e6f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003e6f;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #414750;
}
.article-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}
.article-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #414750;
}
.article-content blockquote {
    border-left: 4px solid #006c4e;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #414750;
    background: #f5f3ef;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
}

/* =============================================
   Service Page Styles (Nursing, Elder, Post-Surgery)
   ============================================= */
.service-item {
    transition: all 0.3s ease;
}
.service-item:hover {
    background: #e8f4fd;
    transform: translateX(4px);
}

.gradient-border {
    position: relative;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #003e6f, #9af1cb);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* =============================================
   Packages Page Styles
   ============================================= */
.category-tab {
    transition: all 0.3s ease;
    cursor: pointer;
    border-color: transparent;
}
.category-tab.active {
    background: #003e6f !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(0,62,111,0.3);
    border-color: transparent !important;
}
.category-tab.active .tab-icon {
    color: white !important;
}
.category-tab.active[data-category="elder-care"] {
    background: #006c4e !important;
    box-shadow: 0 4px 20px rgba(0,108,78,0.3);
}
.category-tab.active[data-category="post-surgery"] {
    background: #6a2902 !important;
    box-shadow: 0 4px 20px rgba(106,41,2,0.3);
}
.category-tab:not(.active):hover {
    background: #d2e4ff;
}

.category-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}
.category-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.package-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.package-card:hover {
    transform: translateY(-8px);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.pulse-dot {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
}

/* =============================================
   Animations
   ============================================= */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInAnim {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
