/* ================================================
   CureHealth - Main Stylesheet
   ================================================ */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3D6188;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #222C40;
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover lift */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
html,
body,
* {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* RTL Support Helpers */
[dir="rtl"] .reveal {
    transform: translateY(20px);
}

[dir="rtl"] .reveal.active {
    transform: translateY(0);
}

/* Animation Delays for Staggered Effects */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #3D6188;
    outline-offset: 2px;
}

/* Language switcher active state */
.lang-switch {
    position: relative;
}

.lang-switch::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3D6188;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lang-switch:hover::after {
    transform: scaleX(1);
}

/* Value cards */
.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Product card image placeholder */
.product-icon-container {
    background: linear-gradient(135deg, #2A364E 0%, #222C40 100%);
}

/* CEO Section Quote */
.ceo-quote {
    position: relative;
}

.ceo-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(61, 97, 136, 0.1);
    line-height: 1;
}

[dir="rtl"] .ceo-quote::before {
    left: auto;
    right: 0;
}