/* SeekoohPro - Premium Modern Professional Style (Static) */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --brand-color: #FE4A23;
    --brand-hover: #e03e1a;
    --navy-color: #131135;
    --navy-hover: #1c1a4a;
    --primary: #FE4A23;
    --primary-light: #FFF5F2;
    --primary-mid: #FFD8CC;
    --primary-dark: #e03e1a;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-light: #f9fafb;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Custom Utilities & Components */
html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    letter-spacing: -0.01em;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #4a5568 !important;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.font-display {
    letter-spacing: -0.02em;
    font-weight: 700;
}

.bg-primary {
    background-color: var(--brand-color) !important;
}

.text-primary {
    color: var(--brand-color) !important;
}

.border-primary-color {
    border-color: var(--brand-color) !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px);
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.navbar-compensation {
    padding-top: 60px;
    /* Adjust based on navbar height */
}

@media (max-width: 991.98px) {
    .navbar-compensation {
        padding-top: 53px;
    }
}


.btn {
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--brand-color) !important;
    border: none !important;
    box-shadow: 0 4px 14px 0 rgba(254, 74, 35, 0.3);
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--brand-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.4);
}

.btn-primary-outline {
    border: 1px solid var(--brand-color) !important;
    color: var(--brand-color);
}

.btn-primary-outline:hover {
    background-color: var(--brand-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.4);
    color: white;
}

.btn-light {
    background-color: #f7fafc !important;
    border: 1px solid #edf2f7 !important;
    color: #4a5568 !important;
}

.btn-light:hover {
    background-color: #edf2f7 !important;
    color: #2d3748 !important;
}

.dashboard-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(254, 74, 35, 0.2);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
}

.badge-soft-primary {
    background-color: rgba(254, 74, 35, 0.1) !important;
    color: var(--brand-color) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 10px;
    padding: 0.4em 0.8em;
    border-radius: 0.5rem;
}

.badge-soft-success {
    background-color: rgba(72, 187, 120, 0.1) !important;
    color: #2f855a !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 10px;
    padding: 0.4em 0.8em;
    border-radius: 0.5rem;
}

.text-gradient {
    background: linear-gradient(to right, #FE4A23, #ff7e5f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-light-soft {
    background-color: #f8fafc !important;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Utilities */
.fw-black {
    font-weight: 800 !important;
}

.tracking-tighter {
    letter-spacing: 0.02em !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.bg-navy {
    background-color: #131135 !important;
}

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

/* Dashboard Sidebar Specifics */
#sidebar.collapsed {
    margin-left: -280px;
}

#main-content.expanded {
    margin-left: 0 !important;
}

@media (max-width: 991.98px) {
    #sidebar {
        margin-left: -280px;
    }

    #sidebar.open {
        margin-left: 0;
    }

    #main-content {
        margin-left: 0 !important;
    }
}

.z-1000 {
    z-index: 1000;
}

.z-900 {
    z-index: 900;
}

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

.tutor-card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 10px;
}

.tutor-card:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.bg-hover-light:hover {
    background-color: #f7fafc;
    color: #131135 !important;
}

.extra-small {
    font-size: 10px;
}

/* Mobile App-like Experience */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .main-wrapper {
        padding-bottom: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Professional Offcanvas */
    .offcanvas {
        border-left: none !important;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        width: 100% !important;
    }

    .navbar-toggler {
        padding: 0;
    }
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1060;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #718096;
    font-size: 0.6rem;
    font-weight: 700;
    transition: all 0.2s ease;
    width: 20%;
    margin-top: 5px;
    letter-spacing: -0.01em;
}

.bottom-nav-item i {
    font-size: 1.35rem;
    margin-bottom: 3px;
    opacity: 0.8;
}

.bottom-nav-item.active {
    color: var(--brand-color);
}

.bottom-nav-item.active i {
    transform: translateY(-1px);
    opacity: 1;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

/* Floating Action Button for mobile */
.mobile-fab {
    width: 48px;
    height: 48px;
    background-color: var(--brand-color) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    margin-top: -34px;
    box-shadow: 0 8px 16px rgba(254, 74, 35, 0.25) !important;
    border: 3px solid white !important;
    transition: all 0.3s ease;
}

.mobile-fab:active {
    transform: scale(0.9) translateY(-2px);
}

.mobile-fab i {
    font-size: 1.25rem;
    margin-bottom: 0 !important;
}

/* Utility to hide/show transitions */
.tap-highlight-none {
    -webkit-tap-highlight-color: transparent;
}

/* Custom Nav Transition */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Text refinements for mobile */
@media (max-width: 575.98px) {
    .display-2 {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }

    .display-3 {
        font-size: 1.8rem !important;
    }

    .display-5 {
        font-size: 1.6rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }
}

/* Multi-step Registration Styles */
.registration-stepper {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 1rem;
}

.registration-stepper::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: #edf2f7;
    z-index: 0;
}

.registration-stepper .step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.registration-stepper .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #a0aec0;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.registration-stepper .step-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a0aec0;
    text-align: center;
    display: none;
}

@media (min-width: 992px) {
    .registration-stepper .step-label {
        display: block;
    }
}

.registration-stepper .step-item.active .step-number {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: white;
    box-shadow: 0 0 0 5px rgba(254, 74, 35, 0.1);
}

.registration-stepper .step-item.active .step-label {
    color: var(--brand-color);
}

.registration-stepper .step-item.completed .step-number {
    background: #48bb78;
    border-color: #48bb78;
    color: white;
}

.registration-stepper .step-item.completed .step-label {
    color: #48bb78;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInSlideRight 0.5s ease-out;
}

@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.form-floating>.form-control {
    border-radius: 0.75rem !important;
    border: 1px solid #edf2f7 !important;
    /* background-color: #f8f9fa !important; */
    padding-left: 1.25rem !important;
}

.form-floating>.form-control:focus {
    border-color: var(--brand-color) !important;
    background-color: white !important;
    box-shadow: 0 0 0 4px rgba(254, 74, 35, 0.05) !important;
}

.upload-box {
    border: 2px dashed #edf2f7;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-box:hover {
    border-color: var(--brand-color);
    background-color: rgba(254, 74, 35, 0.02);
}

.upload-box i {
    font-size: 2.5rem;
    color: #ccd0d5;
    margin-bottom: 1rem;
}

.btn-group-toggle {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-group-toggle .btn-check:checked+.btn {
    background-color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
    color: white !important;
}

.btn-group-toggle .btn {
    border-radius: 0.5rem;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border: 1px solid #edf2f7;
    background: #f8fafc;
    color: #4a5568;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    padding: 0.5rem;
    border: 1px solid #edf2f7;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.time-slot:hover {
    background: #f8fafc;
    border-color: var(--brand-color);
}

.time-slot.selected {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

/* Hero Search Bar Polishes */
.hero-search-container {
    background: #ffffff;
    transition: all 0.3s ease;
}

.hero-search-container:focus-within {
    box-shadow: 0 20px 40px -15px rgba(254, 74, 35, 0.15) !important;
}

@media (min-width: 768px) {
    .border-md-end {
        border-right: 1px solid #edf2f7 !important;
    }
}

.hover-bg-white:hover {
    background-color: #ffffff !important;
}

.animate-slide-up.delay-100 {
    animation-delay: 0.1s;
}

.animate-slide-up.delay-200 {
    animation-delay: 0.2s;
}

/* Dashboard Specific Utilities (Migrated from SCSS) */
.bg-soft-yellow {
    background-color: #FFFBEB !important;
    color: #92400E !important;
}

.bg-soft-green {
    background-color: #F0FDF4 !important;
    color: #166534 !important;
}

.bg-soft-blue {
    background-color: #EFF6FF !important;
    color: #1E40AF !important;
}

.bg-soft-red {
    background-color: #FEF2F2 !important;
    color: #991B1B !important;
}

.dashboard-action-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 120px;
}

.dashboard-action-card i {
    font-size: 1.5rem;
    color: inherit;
}

.dashboard-action-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
}

.dashboard-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #FE4A23;
}

.dashboard-grid-container {
    max-width: 800px;
    margin: 0 auto;
}

.pyramid-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pyramid-grid .grid-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.apply-btn {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: none;
    transition: all 0.2s;
}

.job-card:hover .apply-btn,
.tuition-list:hover .apply-btn {
    background: var(--primary);
    color: white;
}