/* Modern Premium Design Styles */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --accent-color: #00d2ff;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.top-bar {
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.text-cyan {
    color: #38bdf8 !important;
}
.bg-success-glass {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}
.fs-7 {
    font-size: 0.85rem;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.icon-box-sm {
    width: 36px;
    height: 36px;
}
.bg-gradient-blue {
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
}
.text-accent {
    color: #0284c7;
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    min-height: 520px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(13, 110, 253, 0.8) 100%);
    z-index: 1;
}
.z-index-2 {
    z-index: 2;
}
.min-vh-60 {
    min-height: 55vh;
}
.fw-extrabold {
    font-weight: 800;
}
.text-light-80 {
    color: rgba(255, 255, 255, 0.85);
}
.bg-glass-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}
.border-cyan-light {
    border-color: rgba(56, 189, 248, 0.3) !important;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0284c7 100%);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #0d6efd 100%);
}
.btn-glass-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-glass-light:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
}
.shadow-glow {
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.bg-light-section {
    background-color: #f8fafc;
}
.modern-card {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modern-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #0d6efd 0%, #0284c7 100%);
}
.modern-card:hover .icon-wrapper i {
    color: #ffffff !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-input {
    border-radius: 12px;
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}
.modern-input:focus {
    background-color: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.bg-dark-footer {
    background: #0f172a;
}

main h2, main .page-header {
    display: none;
}