@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --medical-blue: #005596;
    --medical-blue-dark: #00447a;
    --soft-teal: #E0F2F1;
    --accent-teal: #00897B;
    --text-dark: #1a2332;
    --text-muted: #5a6a7a;
}

* {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 20px;
}

body {
    color: var(--text-dark);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.bg-medical-blue {
    background-color: var(--medical-blue);
}

.bg-text-dark {
    background-color: var(--text-dark);
}

.text-medical-blue {
    color: var(--medical-blue);
}

.border-medical-blue {
    border-color: var(--medical-blue);
}

.hover\:bg-medical-blue-dark:hover {
    background-color: var(--medical-blue-dark);
}

.bg-soft-teal {
    background-color: var(--soft-teal);
}

.bg-accent-teal {
    background-color: var(--accent-teal);
}

.text-accent-teal {
    color: var(--accent-teal);
}

.text-accent-teal-dark {
    color: #00695C;
}

.text-text-dark {
    color: var(--text-dark);
}

.text-text-muted {
    color: var(--text-muted);
}

.shadow-float {
    box-shadow: 0 4px 6px -1px rgba(0, 85, 150, 0.08), 0 12px 32px -4px rgba(0, 85, 150, 0.12);
}

.card-float {
    box-shadow: 0 4px 6px -1px rgba(0, 85, 150, 0.08), 0 12px 32px -4px rgba(0, 85, 150, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-float:hover {
    box-shadow: 0 8px 16px -2px rgba(0, 85, 150, 0.12), 0 24px 48px -8px rgba(0, 85, 150, 0.18);
    transform: translateY(-2px);
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.live-dot {
    animation: live-pulse 1.8s ease-in-out infinite;
}

input[type='range'] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type='range']::-webkit-slider-track {
    background: #E0F2F1;
    height: 6px;
    border-radius: 9999px;
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #005596;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 85, 150, 0.35);
    margin-top: -8px;
}

.slide-in-left {
    animation: slideInLeft 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.bottom-nav-safe {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Missing Utility Classes */
.bg-text-dark\/70 {
    background-color: rgba(26, 35, 50, 0.7);
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-black\/30 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-70 {
    opacity: 0.7;
}
/* Custom CF7 Input Styles */
.cf7-custom-input, 
.cf7-custom-textarea {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    border: 2px solid #F3F4F6 !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    background: #ffffff !important;
    color: #1a2332 !important;
    font: inherit !important;
}

.cf7-custom-input:focus,
.cf7-custom-textarea:focus {
    border-color: #005596 !important;
}

.cf7-custom-textarea {
    resize: none !important;
    min-height: 60px !important;
}

/* Custom CF7 Submit Button */
.cf7-custom-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background-color: var(--medical-blue) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 0.875rem 1rem !important;
    border-radius: 0.75rem !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
    gap: 0.5rem !important;
}

.cf7-custom-submit:hover {
    background-color: var(--medical-blue-dark) !important;
    transform: translateY(-1px) !important;
}

.cf7-custom-submit:active {
    transform: translateY(0) !important;
}
