/* OmniaGXT Masterclass Premium Design System */

:root {
    --glass-white: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --primary-blue: #0052cc;
    --accent-cyan: #00d2ff;
    --teal: #0d9488;
    --purple: #7c3aed;
    --blue: #2563eb;
    --slate: #1e293b;
}

.shadow-2xl { 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; 
}

.shadow-primary-sm { filter: drop-shadow(0 4px 6px rgba(0, 82, 204, 0.3)); }
.shadow-info-sm { filter: drop-shadow(0 4px 6px rgba(0, 210, 255, 0.3)); }
.shadow-success-sm { filter: drop-shadow(0 4px 6px rgba(25, 135, 84, 0.3)); }

.rounded-5 { border-radius: 2.5rem !important; }

.hover-scale-sm { 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
.hover-scale-sm:hover { 
    transform: scale(1.03); 
}

.transition-slow { 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}

.opacity-05 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 59, 48, 0.4);
    animation: pulse 2s infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.master-card {
    background: #fff;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid #f3f4f6;
}
.master-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--primary-blue) !important;
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-10 { height: 10px; }
.w-10 { width: 10px; }
.h-12 { height: 48px; }
.w-12 { width: 48px; }
.h-20 { height: 80px; }
.w-20 { width: 80px; }

.bg-teal-soft { background: rgba(13, 148, 136, 0.1); }
.bg-purple-soft { background: rgba(124, 58, 237, 0.1); }
.bg-blue-soft { background: rgba(37, 99, 235, 0.1); }
.bg-slate-soft { background: rgba(30, 41, 59, 0.1); }

.text-teal { color: var(--teal) !important; }
.text-purple { color: var(--purple) !important; }
.text-blue { color: var(--blue) !important; }
.text-slate { color: var(--slate) !important; }

.text-muted-rich {
    color: #4b5563;
    font-weight: 450;
    line-height: 1.8;
}

.h-px { height: 1px; }

.text-gradient-blue {
    background: linear-gradient(135deg, #0052cc 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-soft {
    background: rgba(0, 82, 204, 0.05);
}

/* Page Unique Themes */
.theme-courier { --theme-color: #0052cc; }
.theme-logistics { --theme-color: #0d9488; }
.theme-nemt { --theme-color: #7c3aed; }
.theme-supply { --theme-color: #2563eb; }
.theme-trade { --theme-color: #1e293b; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ===== Icon Circle Variants ===== */
.icon-circle-sm {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.icon-circle-md {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-xl {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-xs {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* ===== Process Step Number ===== */
.process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.process-step-block {
    position: relative;
    padding: 20px 10px;
}

/* ===== Dark Section Utilities ===== */
.bg-white-05 {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ===== Color Utilities ===== */
.bg-info-soft {
    background-color: rgba(0, 210, 255, 0.1) !important;
}

.text-info {
    color: #0dcaf0 !important;
}

.bg-success {
    background-color: #198754 !important;
}

.text-success {
    color: #198754 !important;
}

/* ===== Hover Utilities ===== */
.hover-bg-primary-soft {
    transition: background-color 0.3s ease;
}

.hover-bg-primary-soft:hover {
    background-color: rgba(0, 82, 204, 0.06) !important;
}

.transition-all {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ===== Z-Index Utilities ===== */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }

/* ===== Glass Pill ===== */
.glass-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    color: #fff;
}

/* ===== Landing Page Section Spacing ===== */
.section-hero-landing + .section-intro {
    margin-top: 0;
}

/* ===== Accordion Overrides for Landing ===== */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 82, 204, 0.05);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 82, 204, 0.1);
}

/* ===== CTA Section Override ===== */
.section-cta .btn-secondary-alt {
    font-size: 1.05rem;
}

/* ===== Medical Courier Page Specific ===== */
.section-compliance .bg-dark,
.section-compliance.bg-dark {
    background-color: var(--slate, #1e293b) !important;
}

/* Section icon-circle-lg icon sizing */
.icon-circle-lg i {
    font-size: 1.75rem;
}

.icon-circle-xl i {
    font-size: 2rem;
}

.icon-circle-md i {
    font-size: 1.5rem;
}
