/* Google Fonts */
body {
    font-family: 'Inter', sans-serif;
    color: #495057;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* Utilities */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.tracking-wider { letter-spacing: 2px; }
.transition-all { transition: all 0.3s ease-in-out; }

/* Colors - Primary Tailored */
:root {
    --bs-primary: #0056b3;
    --bs-primary-rgb: 0, 86, 179;
}
.text-primary { color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity, 1)) !important; }
.bg-primary { background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important; }
.btn-primary { 
    background-color: var(--bs-primary); 
    border-color: var(--bs-primary);
}
.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}
.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

/* Animations */
.animate-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}
.service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-top: -30px;
    margin-right: 20px;
}

/* Feature Item */
.feature-item {
    padding: 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}
.feature-icon {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.feature-item:hover .feature-icon {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
}

/* Forms */
.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
    background-color: #fff !important;
}

/* Pulse Animation for Round Elements */
.pulse-animation {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.4);
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
    }
}

/* ═══════════════════════════════════════════
   Premium Quick Links Sidebar — Glassmorphism
   ═══════════════════════════════════════════ */
.quick-links-card {
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.6) inset !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.quick-links-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 50px rgba(211, 47, 47, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.7) inset !important;
}

/* Glassy Red Header */
.quick-links-header {
    background: linear-gradient(135deg, #d32f2f 0%, #a81c1c 100%) !important;
    padding: 22px 26px !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.quick-links-header::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 160%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.20) 0%, transparent 65%);
    pointer-events: none;
}

.quick-links-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* Glassy Link Items */
.quick-link-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #3a3f5c !important;
    padding: 15px 22px !important;
    border-color: rgba(200, 200, 220, 0.25) !important;
    background: rgba(255, 255, 255, 0.30) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-left: 3px solid transparent !important;
    position: relative;
}

.quick-link-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(211,47,47,0.06), transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.quick-link-item:hover::before {
    opacity: 1;
}

.quick-link-item i {
    color: #ef7e22;
    transition: transform 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.quick-link-item:hover {
    background: rgba(211, 47, 47, 0.07) !important;
    color: #d32f2f !important;
    border-left-color: #ef7e22 !important;
    padding-left: 30px !important;
    box-shadow: inset 0 0 12px rgba(211, 47, 47, 0.04);
}

.quick-link-item:hover i {
    transform: translateX(5px) scale(1.15);
    color: #ef7e22 !important;
    filter: drop-shadow(0 0 4px rgba(239, 126, 34, 0.5));
}

/* Navbar dropdown custom styles matching screenshot */
.navbar-nav .dropdown-menu {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 12px 8px !important;
    min-width: 250px !important;
}

.navbar-nav .dropdown-item {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 0.98rem !important;
    font-weight: 500 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    color: #333333 !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #0056b3 !important;
}

.navbar-nav .dropdown-item i {
    font-size: 1.15rem !important;
    margin-right: 12px !important;
    width: 24px !important;
    text-align: center !important;
}

/* Custom icon colors matching screenshot */
.navbar-nav .dropdown-item .text-primary {
    color: #0056b3 !important;
}
.navbar-nav .dropdown-item .text-warning {
    color: #ffb703 !important;
}
.navbar-nav .dropdown-item .text-success {
    color: #198754 !important;
}
.navbar-nav .dropdown-item .text-info {
    color: #00bcd4 !important;
}
.navbar-nav .dropdown-item .text-danger {
    color: #dc3545 !important;
}
