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

:root {
    --primary-orange: #FF6B00;
    --primary-orange-hover: #E05E00;
    --primary-orange-light: rgba(255, 107, 0, 0.08);
    
    --brand-violet: #7C3AED;
    --brand-violet-hover: #6D28D9;
    --brand-violet-dark: #4C1D95;
    --brand-violet-light: rgba(124, 58, 237, 0.08);
    
    --bg-main: #F4F5F7;
    --bg-card: #FFFFFF;
    --bg-input: #F9FAFB;
    
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    
    --border-color: rgba(31, 41, 55, 0.08);
    --border-orange: rgba(255, 107, 0, 0.25);
    
    --font-primary: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 260px;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-violet);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
    background: none;
}

input, select, textarea {
    font-family: var(--font-primary);
    background-color: var(--bg-input);
    border: 1px solid #E5E7EB;
    color: var(--text-main);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px var(--primary-orange-light);
}

/* Layout Wrapper */
.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar Navigation */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    z-index: 100;
    transition: var(--transition-smooth);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-orange), var(--brand-violet));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-text span {
    color: var(--primary-orange);
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-item.active a, .nav-item a:hover {
    color: var(--brand-violet);
    background-color: var(--brand-violet-light);
}

.nav-item.active a {
    background: linear-gradient(90deg, var(--brand-violet-light), transparent);
    border-left: 3px solid var(--brand-violet);
    font-weight: 600;
}

.nav-item.active a i, .nav-item a:hover i {
    color: var(--primary-orange);
}

.nav-item i {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.quick-actions {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.quick-actions-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    border: 1px dashed #D1D5DB;
}

.quick-btn:hover {
    border-color: var(--primary-orange);
    background-color: var(--primary-orange-light);
    color: var(--primary-orange);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
}

.user-profile-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 12px;
    background: var(--bg-main);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-violet), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-light);
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-main);
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    padding: 0 40px 40px 40px;
    background-color: var(--bg-main);
    position: relative;
    max-width: calc(100% - var(--sidebar-width));
}

/* Top Header */
.top-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background-color: rgba(244, 245, 247, 0.85);
    backdrop-filter: blur(12px);
    z-index: 90;
    border-bottom: 1px solid var(--border-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-badge {
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.stats-badge strong {
    color: var(--primary-orange);
}

.cart-icon-btn {
    position: relative;
    background: var(--bg-card);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.cart-icon-btn:hover {
    border-color: var(--brand-violet);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-orange);
    color: var(--text-light);
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(255, 107, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Page Components */
.page-title-section {
    margin-bottom: 30px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
}

.page-subtitle {
    color: var(--text-muted);
    margin-top: 4px;
}

/* Grid Layout matching reference design */
.explore-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.grid-col-left, .grid-col-middle, .grid-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cards & Visual assets */
.promo-card {
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--brand-violet), var(--primary-orange));
    color: var(--text-light);
}

.promo-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0;
}

.btn-pill {
    background: var(--bg-card);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.btn-pill.primary {
    background: var(--primary-orange);
    color: var(--text-light);
    border-color: var(--primary-orange);
}

.btn-pill.primary:hover {
    background: var(--primary-orange-hover);
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--brand-violet);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
}

.product-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.product-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-cat {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-main);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
}

.product-price-span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.product-action-btn {
    background: var(--brand-violet);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-action-btn:hover {
    background: var(--primary-orange);
}

/* Modals & Popups System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--bg-card);
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--primary-orange);
}

.modal-body {
    padding: 40px;
}

/* Image Slider inside modal */
.slider-container {
    width: 100%;
    height: 260px;
    background: #F3F4F6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
}

.slider-img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    color: var(--text-main);
    z-index: 5;
    border: 1px solid #E5E7EB;
}

.slider-nav:hover {
    background: var(--primary-orange);
    color: var(--text-light);
    border-color: var(--primary-orange);
}

.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }

/* Submitting Screen loader */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #F3F4F6;
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.tx-id-badge {
    background: var(--brand-violet-light);
    border: 1px dashed var(--brand-violet);
    padding: 16px;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    color: var(--brand-violet);
    margin: 20px 0;
    font-family: monospace;
}

/* Category Filters Row */
.filter-tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-pill {
    background: var(--bg-card);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--brand-violet);
    color: var(--text-light);
    border-color: var(--brand-violet);
}

/* Forms & Installment Calculator */
.calculator-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
}

.slider-group {
    margin-bottom: 24px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #E5E7EB;
    outline: none;
    padding: 0;
    border: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
    transition: var(--transition-smooth);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.installment-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.term-option {
    background: var(--bg-input);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-main);
}

.term-option.active {
    border-color: var(--brand-violet);
    background: var(--brand-violet-light);
    color: var(--brand-violet);
}

.term-option-months {
    font-size: 1.1rem;
    font-weight: 700;
}

.term-option-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.calc-breakdown {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.breakdown-row.total {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.breakdown-row.total span:last-child {
    color: var(--primary-orange);
}

/* User Dashboard & Credit Indicator */
.credit-score-card {
    background: linear-gradient(135deg, #F3E8FF, #FAE8FF);
    border: 1px solid var(--border-orange);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

/* Wizard Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Admin Dashboard Table */
.admin-table-card {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-top: 24px;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.data-table-container {
    overflow-x: auto;
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.data-table th, .data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover td {
    background: rgba(0,0,0,0.01);
}

.badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.badge.pending {
    background: rgba(255, 167, 38, 0.1);
    color: #FFA726;
}

.badge.approved {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.badge.rejected {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

/* Home / Landing styling */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 0;
}

.hero-content {
    flex: 1.2;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-glow {
    position: relative;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-float {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    padding: 0 24px 24px 24px;
    max-height: 200px;
}

.faq-icon {
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

/* File input buttons */
.upload-btn-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-file-input {
    display: none;
}

.file-label-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-input);
    border: 1px dashed #D1D5DB;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.file-label-btn:hover {
    border-color: var(--brand-violet);
    color: var(--brand-violet);
    background: var(--brand-violet-light);
}

.file-label-btn.has-file {
    border-color: #10B981;
    color: #10B981;
    background: rgba(16, 185, 129, 0.05);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .explore-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    :root {
        --sidebar-width: 0px;
    }
    
    .sidebar {
        left: -280px;
        width: 260px;
    }
    
    .sidebar.open {
        left: 0;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    }
    
    .main-content {
        margin-left: 0;
        max-width: 100%;
        padding: 0 20px 20px 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-right: 16px;
    }
    .top-header {
        background-color: rgba(244, 245, 247, 0.95);
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 24px 0 !important;
    }
    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    .hero-desc {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
    }
    .hero-visual {
        margin-top: 24px;
        transform: scale(0.85);
        max-width: 100%;
    }
    .btn-pill {
        align-self: center;
    }
    .installment-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-title {
        font-size: 1.25rem !important;
    }
    .top-header {
        height: 70px;
    }
    .stats-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .view-mode-toggle-bar {
        display: none !important;
    }
}

/* Base edu-grid & edu-card styles for desktop */
.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.edu-card {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.edu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.edu-card.custom-request {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(255, 107, 0, 0.08));
}
.edu-card.product-loan {
    background: var(--bg-card);
}

/* Mobile responsive overrides */
@media (max-width: 768px) {
    .edu-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .edu-card {
        padding: 20px !important;
        border-radius: 20px;
    }
    .edu-card h3 {
        font-size: 1.35rem !important;
        margin-bottom: 12px !important;
    }
    .edu-card p {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }
}

