/* ========================================== */
/* APPLE-STYLE SMOOTH SHADOWS & TRANSITIONS  */
/* ========================================== */

/* Layered shadow system for floating effect */
.apple-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
}

.apple-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
}

/* Service icon Apple-style effects */
.apple-service-icon {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    border-radius: 12px;
}

.apple-service-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
}

/* Enhanced service icon variations */
.apple-service-icon-rounded {
    border-radius: 9999px;
}

.apple-service-icon-circle {
    border-radius: 50%;
}

/* Focus states with Apple-style rings */
.apple-focus:focus {
    outline: none;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    border-radius: 12px;
}

/* Scale effects for interactive elements */
.apple-scale:hover {
    transform: scale(1.02);
}

.apple-scale-sm:hover {
    transform: scale(1.01);
}

.apple-scale-lg:hover {
    transform: scale(1.05);
}

/* Floating animation keyframes */
@keyframes apple-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.apple-float {
    animation: apple-float 3s ease-in-out infinite;
}

/* Enhanced existing utility classes with Apple styling */
.custom-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    border-radius: 12px;
}

.service-icon-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
    border-radius: 12px;
}

/* Update card hover effects */
.card-hover-effect {
    transition: transform 0.2s ease;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
}

.card-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
}

/* Apple-style input focus */
.apple-input:focus {
    outline: none;
    border-color: #315EFB;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
}

/* Nepali Calendar Apple-style enhancements */
.nepali-calendar .calendar-day,
.nepali-calendar .day-header,
.nepali-calendar .calendar-navigation a,
.nepali-calendar .panchang-details {
    border-radius: 16px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nepali-calendar .calendar-day {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.nepali-calendar .calendar-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    border-color: #9ca3af !important;
}

.nepali-calendar .calendar-day.today {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6 !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    transform: scale(1.05);
}

.nepali-calendar .calendar-day.festival {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #f87171 !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
}

.nepali-calendar .day-header {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #1f2937 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.nepali-calendar .calendar-navigation a {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #1f2937 !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.nepali-calendar .calendar-navigation a:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
}

.nepali-calendar .panchang-details {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .nepali-calendar .calendar-day,
    .nepali-calendar .day-header,
    .nepali-calendar .calendar-navigation a,
    .nepali-calendar .panchang-details {
        border-radius: 12px !important;
    }
    
    .nepali-calendar .calendar-day .tithi {
        display: none !important;
    }
}

/* Ensure consistent border-radius values for Apple-style components */
.apple-shadow {
    border-radius: 0.75rem !important; /* 12px */
}

.apple-shadow-sm {
    border-radius: 0.75rem !important; /* 12px */
}

.apple-shadow-md {
    border-radius: 12px !important;
}

.apple-shadow-lg {
    border-radius: 12px !important;
}

.apple-shadow-xl {
    border-radius: 12px !important;
}

.apple-button {
    border-radius: 12px !important;
}

.apple-service-icon {
    border-radius: 12px !important;
}

.apple-input {
    border-radius: 12px !important;
}

.apple-dropdown {
    border-radius: 12px !important;
}

.apple-modal {
    border-radius: 12px !important;
}

.apple-notification {
    border-radius: 12px !important;
}

.apple-tab {
    border-radius: 12px !important;
}

/* Variations for Apple-style components */
.apple-button-rounded,
.apple-card-rounded,
.apple-service-icon-rounded,
.apple-input-rounded,
.apple-dropdown-rounded,
.apple-modal-rounded,
.apple-notification-rounded,
.apple-tab-rounded {
    border-radius: 9999px !important; /* Fully rounded */
}

.apple-button-pill,
.apple-tab-pill {
    border-radius: 12px !important;
}

.apple-service-icon-circle {
    border-radius: 50% !important; /* Perfect circle */
}

/* Remove border-radius from specific elements */
.preview-notice,
.hero-gradient {
    border-radius: 0 !important;
}

/* Post content container style for about, privacy, and press pages */
.page-template-page-about .bg-white,
.page-template-page-privacy .bg-white,
.page-template-page-press .bg-white {
    border-radius: 12px !important;
}



