/* ===================================
   VISION OS / MODERN GLASS THEME
   =================================== */

/* LOCAL FONTS - Inter */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/InterDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/InterDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/InterDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/InterDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Core Colors */
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.3);
    --secondary: #7c3aed;
    --accent: #f472b6;

    /* Text */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-white: #ffffff;

    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glass-blur: blur(20px);

    /* Spacing & Radius */
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8fafc;
    /* Slate-50: Clean & Professional */
    /* Refined Dot Pattern - Smaller, Tighter, Subtler */
    background-image: radial-gradient(rgba(148, 163, 184, 0.25) 1px, transparent 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 10px;
}

/* ===================================
   GLASS COMPONENTS
   =================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* ===================================
   GLASS COMPONENTS & HEADER
   =================================== */
.glass-header {
    background: #ffffff26;
    /* Açık pastel ton (resimdeki gibi) */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Floating Layout */
    position: sticky;
    top: 30px;
    left: 0;
    right: 0;

    width: 95%;
    max-width: 1400px;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    z-index: 1000;
}

/* ===================================
   NAVBAR & LAYOUT
   =================================== */
.navbar-container {
    width: 100%;
    padding: 0 40px;
    height: 70px;
    /* Navbar yüksekliği (Logodan bağımsız) */
    display: flex;
    justify-content: flex-end;
    /* İçeriği sağa yasla, logo solda absolute olacak */
    align-items: center;
    position: relative;
    /* Logo referansı */
}

.brand {
    position: absolute;
    left: 40px;
    /* Navbar padding hizası (İçeride) */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
    /* İkon absolute olduğu için gap etkisiz, margin ile yönetilecek */
}

.brand-text-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-top: 0;
    left: 30px;
    /* Tam ortalı */
    position: relative;
    /* Z-index için gerekli */
    z-index: 2;
    /* İkonun üzerinde durmalı */
}

.brand-icon {
    position: absolute;
    right: 100%;
    /* Metnin tam solunda başlar */
    margin-right: -25px;
    /* Metne ve Navbarın içine doğru yaklaştırdık */
    height: 100px;
    /* Büyük ikon */
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    /* Dikey ortalama */
    top: 36%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: #ffffff00;
    /* Metnin arkasında */

}

.brand:hover .brand-icon {
    transform: translateY(-50%) scale(1.05);
    /* Aşağı kayma sorunu düzeltildi */
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.brand-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    /* Sidebar on right */
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 80px auto 40px auto;
    /* Üstten ciddi bir boşluk bırakıldı (Slider ile navbar arası) */
    padding: 0 var(--spacing-md);
}

.content-area {
    min-width: 0;
    /* Prevents grid blowout */
    overflow: hidden;
}

/* ===================================
   SLIDER (Floating Glass)
   =================================== */
.slider-section {
    grid-column: 1 / -1;
    /* Full width inside layout or above? Let's keep inside */
    margin-bottom: var(--spacing-md);
}

.slider-container {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 280px;
    overflow: hidden;
    position: relative;
}

.slider-image-wrapper {
    position: relative;
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    /* Rounded corners for image itself */
    transition: transform 0.5s ease;
}

.slider-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Boşluk artırıldı */
    flex: 1;
    /* Tüm yüksekliği kaplasın */
    justify-content: space-evenly;
    /* Eşit dağılım */
}

.slider-item {
    padding: 20px 25px;
    /* Daha geniş ve ferah */
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.slider-item:hover,
.slider-item.active {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transform: translateX(5px);
}

.slider-item-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.slider-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ===================================
   DASHBOARD (Widgets)
   =================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Widget Card - The Core of the Design */
.widget-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Widget Specifics */
.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.widget-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.widget-change {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.change-up {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.change-down {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

/* Content Area Split */
.content-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.container-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===================================
   TAX CALENDAR - MODERN COMPACT DESIGN
   =================================== */
.tax-calendar-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Calendar Header */
.tax-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
}

.tax-calendar-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.calendar-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.tax-calendar-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.calendar-subtitle {
    font-size: 0.78rem;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    background: rgba(37, 99, 235, 0.08);
}

.view-all-link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* Calendar Content */
.tax-calendar-content {
    padding: 16px;
    max-height: 420px;
    overflow-y: auto;
}

/* Custom Scrollbar */
.tax-calendar-content::-webkit-scrollbar {
    width: 4px;
}

.tax-calendar-content::-webkit-scrollbar-track {
    background: transparent;
}

.tax-calendar-content::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.2);
    border-radius: 4px;
}

.tax-calendar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.4);
}

/* Calendar Item - Compact Design */
.calendar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-item:last-child {
    margin-bottom: 0;
}

.calendar-item:hover {
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.12);
    transform: translateX(4px);
}

/* Date Box - Compact */
.date-box {
    min-width: 48px;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.date-day {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.date-month {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Urgent Date Box */
.calendar-item.urgent .date-box {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    border-color: transparent;
}

.calendar-item.urgent .date-day,
.calendar-item.urgent .date-month {
    color: white;
}

/* Event Details */
.event-details {
    flex: 1;
    min-width: 0;
}

.event-details h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-details p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Calendar Tags - Compact */
.calendar-tags {
    display: flex;
    gap: 5px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag i {
    font-size: 0.55rem;
}

.tag-payment {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.tag-declare {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.tag-notification {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Badge Urgent */
.badge-urgent {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    animation: urgentPulse 2s infinite;
    white-space: nowrap;
}

@keyframes urgentPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}


/* ===================================
   INFO COLUMN - MODERN COMPACT DESIGN
   =================================== */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Info Card - Base */
.info-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Info Card Header */
.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
}

.info-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-card-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
}

.info-card-label {
    display: flex;
    flex-direction: column;
}

.label-year {
    font-size: 0.65rem;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
}

/* Wage Stats */
.wage-stats {
    display: flex;
    padding: 16px 18px;
    gap: 16px;
}

.wage-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wage-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wage-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.wage-change {
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #64748b;
}

.wage-change.up {
    color: #10b981;
}

.wage-change i {
    font-size: 0.6rem;
}

.wage-sub {
    font-size: 0.7rem;
    color: #94a3b8;
}

.wage-divider {
    width: 1px;
    background: rgba(226, 232, 240, 0.8);
}

/* Quick Links Card */
.quick-links-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.03);
}

.quick-links-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
}

.quick-links-header i {
    color: #eab308;
    font-size: 0.9rem;
}

.quick-links-header span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 14px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quick-link i {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.quick-link:hover i {
    transform: scale(1.1);
}

.quick-link span {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

/* Quick Link Colors */
.quick-link[data-color="amber"] i {
    color: #f59e0b;
}

.quick-link[data-color="blue"] i {
    color: #3b82f6;
}

.quick-link[data-color="green"] i {
    color: #10b981;
}

.quick-link[data-color="indigo"] i {
    color: #6366f1;
}

.quick-link[data-color="red"] i {
    color: #ef4444;
}

.quick-link[data-color="purple"] i {
    color: #8b5cf6;
}

.quick-link[data-color="pink"] i {
    color: #ec4899;
}

.quick-link[data-color="slate"] i {
    color: #64748b;
}

.quick-link[data-color="amber"]:hover {
    background: rgba(245, 158, 11, 0.06);
}

.quick-link[data-color="blue"]:hover {
    background: rgba(59, 130, 246, 0.06);
}

.quick-link[data-color="green"]:hover {
    background: rgba(16, 185, 129, 0.06);
}

.quick-link[data-color="indigo"]:hover {
    background: rgba(99, 102, 241, 0.06);
}

.quick-link[data-color="red"]:hover {
    background: rgba(239, 68, 68, 0.06);
}

.quick-link[data-color="purple"]:hover {
    background: rgba(139, 92, 246, 0.06);
}

.quick-link[data-color="pink"]:hover {
    background: rgba(236, 72, 153, 0.06);
}

.quick-link[data-color="slate"]:hover {
    background: rgba(100, 116, 139, 0.06);
}

/* ===================================
   SIDEBAR - MODERN PROFESSIONAL DESIGN
   =================================== */
.sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Card Container */
.sidebar-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-card:hover {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Sidebar Card Header */
.sidebar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
}

.sidebar-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-card-title h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Source Badges */
.source-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.source-badge.gib {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
}

.source-badge.turmob {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
}

.source-badge.resmigazete {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
}

/* Live Indicator */
.live-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

/* Sidebar Card Content */
.sidebar-card-content {
    max-height: 280px;
    overflow-y: auto;
    padding: 12px;
}

/* Custom Scrollbar */
.sidebar-card-content::-webkit-scrollbar {
    width: 4px;
}

.sidebar-card-content::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-card-content::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: 4px;
}

.sidebar-card-content:hover::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
}

/* News Item - Modern Style */
.news-item {
    display: block;
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-item:hover {
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateX(4px);
}

.news-item .news-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item .news-date {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar Card Footer */
.sidebar-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-card-footer span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

.sidebar-card-footer i {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.sidebar-card-footer:hover {
    background: rgba(37, 99, 235, 0.04);
}

.sidebar-card-footer:hover span {
    color: #2563eb;
}

.sidebar-card-footer:hover i {
    color: #2563eb;
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .slider-container {
        grid-template-columns: 1fr;
    }

    .slider-image-wrapper {
        height: 200px;
    }

    .slider-content {
        height: auto;
    }
}

@media (max-width: 768px) {

    .dashboard-grid,
    .content-split,
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
        /* Show on mobile */
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 1.1rem;
        padding: 10px;
        border-radius: 10px;
    }

    .nav a:hover {
        background: rgba(0, 0, 0, 0.05);
    }
}

/* Desktop default for mobile btn */
.mobile-menu-btn {
    display: none;
}

/* Nav Link Styles (Desktop) */
/* Nav Link Styles (Desktop) */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    margin-left: 0;
    /* Eski margin kaldırıldı */
}

/* Linkler arasına çizgi (separator) */
.nav a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -13px;
    color: #cbd5e1;
    font-weight: 300;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

/* Mobile override for separators */
@media (max-width: 768px) {
    .nav a:not(:last-child)::after {
        display: none;
    }
}


/* Utilities */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    gap: 10px;
}

.error {
    padding: 15px;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
}

/* Sidebar List Scrolling (Max 3 items visible) */
.sidebar-list {
    max-height: 280px;
    /* Yaklaşık 3 duyuru (her biri ~80-90px) */
    overflow-y: auto;
    padding-right: 5px;
    /* Scrollbar için boşluk */
}

/* Scrollbar Styling for Sidebar */
.sidebar-list::-webkit-scrollbar {
    width: 6px;
}

.sidebar-list::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-list::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.3);
    border-radius: 10px;
    transition: background 0.3s;
}

.sidebar-list:hover::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.6);
}

/* Calendar Badge */
.badge-urgent {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Calendar Tags from GİB Style */
.calendar-tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-payment {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.tag-declare {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.tag-notification {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* ===================================
   CURRENCY TICKER - PROFESSIONAL DESIGN
   =================================== */
.currency-ticker-section {
    position: relative;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.currency-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.currency-ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: currencyScroll 35s linear infinite;
    will-change: transform;
}

/* Hover durdurucu */
.currency-ticker-section:hover .currency-ticker-track {
    animation-play-state: paused;
}

/* Currency Card - Modern Minimal Design */
.currency-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    min-width: 180px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.currency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
    background: #ffffff;
}

/* Special card accent colors on hover */
.currency-card.gold:hover {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.1);
}

.currency-card.bist:hover {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.currency-card.btc:hover {
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.1);
}

/* Currency Pair Name */
.currency-pair {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Currency Info Group */
.currency-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

/* Currency Value */
.currency-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Currency Change */
.currency-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(100, 116, 139, 0.08);
    color: #64748b;
    white-space: nowrap;
}

.currency-change.change-up {
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
}

.currency-change.change-down {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

.currency-change i {
    font-size: 0.65rem;
}

/* Animation - Left to Right flow (reverse direction) */
@keyframes currencyScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   TAX CALENDAR SCROLL
   =================================== */
.calendar-list {
    max-height: 520px;
    /* ~5 öğe sığacak şekilde (her öğe ~100px) */
    overflow-y: auto;
    padding-right: 5px;
}

.calendar-list .calendar-item:last-child {
    margin-bottom: 0;
}

/* Custom Scrollbar for Calendar */
.calendar-list::-webkit-scrollbar {
    width: 5px;
}

.calendar-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.calendar-list::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.2);
    border-radius: 4px;
}

.calendar-list::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.4);
}

/* ===================================
   MINIMAL MARKET WIDGETS
   =================================== */
.market-grid {
    /* Eski grid'i iptal et, slider içinde esnek olsun */
    display: flex;
    gap: 20px;
}

.widget-card {
    min-width: 220px;
    /* Sıkışmayı önle */
    flex-shrink: 0;
    /* Küçülmesin */
    background: white;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    height: 65px;
}

.widget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Sol Taraf: İkon ve İsim */
.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    /* İkon ve yazı arası */
}

.widget-icon {
    font-size: 1.1rem;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
}

.widget-header span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Sağ Taraf: Değer ve Değişim (Dikey Stack) */
.widget-data-group {
    display: flex;
    flex-direction: column;
    /* Alt alta */
    align-items: flex-end;
    /* Sağa yasla */
    justify-content: center;
    gap: 2px;
    /* Birbirine yakın olsun */
}

.widget-change {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
    margin-bottom: 2px;
    /* Value ile araya minik mesafe */
}

.widget-change.change-up {
    color: #059669;
    background: rgba(16, 185, 129, 0.12);
}

.widget-change.change-down {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.12);
}

.widget-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ===================================
/* ===================================
   LOCAL NEWS GRID (Horizontal Image + Content)
   =================================== */
.local-news-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Kartlar arası boşluk */
    margin-bottom: 20px;
}

.news-card {
    display: flex;
    flex-direction: row;
    /* Yan yana */
    align-items: flex-start;
    /* Üstten hizala */
    gap: 20px;
    background: rgba(255, 255, 255, 0.4);
    /* Çok hafif zemin */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-img-wrapper {
    flex-shrink: 0;
    width: 200px;
    /* Sabit genişlik */
    height: 140px;
    /* Sabit yükseklik */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi doldur */
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-content-wrapper {
    flex: 1;
    /* Kalan alanı kapla */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-card-summary {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* 2 satırla sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.news-card-link:hover {
    gap: 10px;
}

/* ===================================
   MODERN FOOTER
   =================================== */
.modern-footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px 0 20px 0;
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Menus */
.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-medium);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a i {
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.6;
}

.footer-menu a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Contact List */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-medium);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.sep {
    color: #ccc;
}

/* Responsive Footer */
@media (max-width: 992px) {
    a.nav-link.active::before {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }

    .news-img-wrapper {
        width: 100%;
        height: 180px;
    }
}

/* ===================================
   LOADING WIDGET
   =================================== */
.loading-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    gap: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
}

/* ===================================
   ASGARI ÜCRET - STATS GRID
   =================================== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    padding: 18px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

/* Decorative circle in background */
.stat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.stat-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-sub i {
    font-size: 0.65rem;
}

/* Right column layout adjustment */
.right-column {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HERO SECTION - FULLSCREEN LIGHT THEME
   =================================== */
.hero-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background - Light Premium Design */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Light gradient with subtle geometric pattern */
    background:
        /* Subtle grid pattern */
        linear-gradient(rgba(248, 250, 252, 0.97), rgba(241, 245, 249, 0.95)),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(37, 99, 235, 0.02) 35px,
            rgba(37, 99, 235, 0.02) 70px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(124, 58, 237, 0.02) 35px,
            rgba(124, 58, 237, 0.02) 70px),
        /* Base gradient */
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    z-index: 1;
}

/* Decorative elements - Light Version */
.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: floatBlob 20s ease-in-out infinite;
}

.hero-fullscreen::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: floatBlob 25s ease-in-out infinite reverse;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

/* Light Overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(248, 250, 252, 0.4) 0%,
            rgba(241, 245, 249, 0.3) 50%,
            rgba(248, 250, 252, 0.4) 100%);
    z-index: 2;
}

/* Hero Header (Light Theme Navbar) */
.hero-header {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 10px 50px 20px 50px;
}

.hero-header .navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 0;
    height: 80px;
}

.hero-header .brand {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-header .brand-logo {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

.hero-header .brand:hover .brand-logo {
    transform: scale(1.03);
}

.hero-header .nav {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.hero-header .nav a {
    color: #334155;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Hover Underline Effect - Only for regular links */
.hero-header .nav>a:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hero-header .nav>a:not(.active):hover::after {
    width: 100%;
}

.hero-header .nav a:hover {
    color: #2563eb;
}

.hero-header .nav a.active {
    color: #2563eb;
}

/* Aktif link altı çizgisi kaldırıldı */
.hero-header .nav a.active::before {
    display: none;
}

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link.has-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Light Theme */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items - Light Theme */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 5px;
    color: #334155;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    font-size: 1rem;
    color: #2563eb;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.06);
    color: #1e293b;
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.1);
}

/* Different icon colors for variety */
.dropdown-item:nth-child(2) i {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
}

.dropdown-item:nth-child(2):hover i {
    background: rgba(139, 92, 246, 0.15);
}

.dropdown-item:nth-child(3) i {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.dropdown-item:nth-child(3):hover i {
    background: rgba(16, 185, 129, 0.15);
}

.dropdown-item:nth-child(4) i {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.dropdown-item:nth-child(4):hover i {
    background: rgba(245, 158, 11, 0.15);
}

.dropdown-item:nth-child(5) i {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
}

.dropdown-item:nth-child(5):hover i {
    background: rgba(236, 72, 153, 0.15);
}

.dropdown-item:nth-child(6) i {
    background: rgba(6, 182, 212, 0.08);
    color: #06b6d4;
}

.dropdown-item:nth-child(6):hover i {
    background: rgba(6, 182, 212, 0.15);
}

.hero-header .mobile-menu-btn {
    color: #334155;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Hero Center Content - Light Theme */
.hero-center-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #1e293b;
    line-height: 1.3;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-highlight {
    display: block;
    font-weight: 700;
    color: #0f172a;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-tagline {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Scroll Down Indicator - Light Theme */
.hero-scroll-indicator {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 50px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.4), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-scroll-indicator span {
    color: #64748b;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Hero Fullscreen Responsive */
@media (max-width: 1024px) {
    .hero-header {
        padding: 10px 30px;
    }

    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {
    .hero-header {
        padding: 0 20px;
    }

    .hero-header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 15px;
    }

    .hero-header .nav.active {
        display: flex;
    }

    .hero-header .mobile-menu-btn {
        display: block;
    }

    .hero-main-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
        padding: 0 20px;
    }

    .hero-header .brand-icon {
        height: 45px;
    }

    .hero-header .brand-text-img {
        height: 25px;
    }
}

/* ===================================
   HERO FLOATING ICONS
   =================================== */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    color: rgba(51, 65, 85, 0.3);
    font-size: 1.5rem;
    animation: floatIcon 20s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.floating-icon.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    color: rgba(59, 130, 246, 0.2);
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: -6s;
    color: rgba(124, 58, 237, 0.2);
}

.floating-icon.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: -9s;
}

.floating-icon.icon-5 {
    top: 40%;
    left: 20%;
    animation-delay: -12s;
    color: rgba(16, 185, 129, 0.2);
}

.floating-icon.icon-6 {
    top: 60%;
    right: 25%;
    animation-delay: -15s;
    color: rgba(245, 158, 11, 0.2);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translateY(10px) rotate(-3deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-10px) rotate(2deg);
        opacity: 1;
    }
}

/* Hero Badge Line */
.hero-badge-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 65, 85, 0.4), transparent);
}

.hero-badge-text {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.8);
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.3);
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .hero-floating-icons {
        display: none;
    }

    .hero-badge-line {
        flex-direction: column;
        gap: 10px;
    }

    .hero-line {
        width: 30px;
    }

    .hero-badge-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}

/* ===================================
   SCROLL DOWN INDICATOR - MODERN
   =================================== */
.hero-scroll-indicator {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-scroll-indicator:hover {
    transform: translateY(-5px);
}

/* Mouse Icon */
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(51, 65, 85, 0.3);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-mouse {
    border-color: rgba(37, 99, 235, 0.5);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(37, 99, 235, 0.6);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* Bouncing Arrows */
.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 5px;
}

.scroll-arrows .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(51, 65, 85, 0.4);
    border-bottom: 2px solid rgba(51, 65, 85, 0.4);
    transform: rotate(45deg);
    animation: arrowBounce 1.5s ease-in-out infinite;
    margin-top: -6px;
}

.scroll-arrows .arrow:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrows .arrow:nth-child(2) {
    animation-delay: 0.15s;
}

.scroll-arrows .arrow:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrowBounce {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Scroll Text */
.scroll-text {
    color: #64748b;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-text {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        padding-bottom: 30px;
    }

    .scroll-mouse {
        width: 22px;
        height: 36px;
    }

    .scroll-wheel {
        height: 8px;
    }

    .scroll-arrows .arrow {
        width: 10px;
        height: 10px;
    }

    .scroll-text {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
}

/* ===================================
   FEATURED SLIDER - PROFESSIONAL LIGHT
   =================================== */
.featured-slider {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.featured-slider-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-slider-title .title-accent {
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #2563eb, #7c3aed);
    border-radius: 2px;
}

.featured-slider-title h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.featured-slider-nav {
    display: flex;
    gap: 10px;
}

.slider-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

/* Slider Track */
.featured-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.featured-slider-track::-webkit-scrollbar {
    display: none;
}

/* Featured Cards */
.featured-card {
    flex: 0 0 280px;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.featured-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.08);
}

.featured-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card-content {
    padding: 20px;
}

.featured-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.featured-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.featured-card-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.featured-card-link:hover {
    color: #1d4ed8;
}

.featured-card-link:hover i {
    transform: translateX(4px);
}

/* Slider Dots */
.featured-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.featured-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.featured-slider-dots .dot:hover:not(.active) {
    background: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-slider {
        padding: 20px;
        border-radius: 16px;
    }

    .featured-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .featured-slider-title h2 {
        font-size: 1.1rem;
    }

    .featured-card {
        flex: 0 0 250px;
    }

    .featured-card-image {
        height: 140px;
    }

    .featured-card-content {
        padding: 15px;
    }

    .featured-card-content h3 {
        font-size: 0.95rem;
    }
}

/* ===================================
   MOBILE MENU - MODERN PROFESSIONAL REVISION
   =================================== */
@media (max-width: 991px) {

    /* Navbar Adjustment */
    .navbar-container {
        justify-content: space-between;
        padding: 0 20px;
    }

    /* FIXED NAVBAR FOR MOBILE - CORRECT CLASS */
    .hero-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        /* Reduced padding */
    }

    /* Push hero content down because header is fixed */
    .hero-fullscreen {
        padding-top: 60px;
        /* Adjusted for smaller header */
    }

    /* Don't add extra margin to main-layout on mobile */
    .main-layout {
        margin-top: 40px !important;
        /* Reset to smaller value */
    }

    /* Logo Fix - Z-Index 10001 (Above Menu) */
    .brand {
        position: relative;
        z-index: 10001 !important;
        /* CRITICAL: Logo must be above the white menu background */
        transform: none;
        top: auto;
        left: auto;
    }

    .brand-icon {
        display: none;
    }

    /* Smaller logo for mobile */
    .brand-logo,
    .brand-text-img {
        height: 48px !important;
        /* Reduced from 40px */
        left: 0;
    }

    /* 
       OFF-CANVAS MENU CONTAINER 
    */
    #mainNav.nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999 !important;
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        /* VERTICAL CENTER ALIGNMENT */
        align-items: center;
        gap: 0 !important;
        /* RESET GAP to prevent huge spaces */

        /* TRANSFORM STRATEGY */
        transform: translateX(100%);
        /* Move completely off-screen to the right */
        visibility: hidden;
        /* Hide cleanly */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s step-end !important;

        padding: 0 30px;
        /* Removed top padding to allow true centering */
        box-shadow: none;
    }

    #mainNav.nav.active {
        transform: translateX(0);
        /* Slide in */
        visibility: visible;
        /* Show */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s step-start !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    /* LINKS - MODERN CLEAN LOOK */
    #mainNav .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b !important;
        /* Slate 800 */
        margin: 0 !important;
        /* Force no margin */
        padding: 24px 0;
        /* Slightly more breathing room */
        /* Consistent padding */
        opacity: 1 !important;
        /* FORCE VISIBLE - No animation risk */
        transform: none !important;
        /* FORCE NO TRANSFORM */
        display: block;
        text-align: center;
        border-radius: 0;
        background: transparent !important;
        border: none !important;
        /* BORDER COLOR FIXED - GRAY always, even if active */
        border-bottom: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
        width: 100%;
        text-decoration: none !important;
        letter-spacing: -0.5px;
        position: relative;
        /* Context for disabling after */
        height: auto !important;
        min-height: 0 !important;
    }

    /* DISABLE DESKTOP ACTIVE LINES / PSEUDOS */
    #mainNav .nav-link::after,
    #mainNav .nav-link.active::after,
    #mainNav .nav-link::before,
    #mainNav .nav-link.active::before {
        display: none !important;
        content: none !important;
        border: none !important;
    }

    /* Last link no border */
    #mainNav .nav-link:last-child {
        border-bottom: none !important;
    }

    /* DROPDOWNS - RESET */
    #mainNav .nav-link.has-dropdown {
        background: transparent !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    /* Remove Arrows on Mobile */
    #mainNav .dropdown-arrow {
        display: none !important;
    }

    /* Ensure Active Link Border stays GRAY and Text becomes Blue */
    #mainNav .nav-link:active,
    #mainNav .nav-link.active {
        background: transparent !important;
        /* No background box */
        color: #2563eb !important;
        /* Primary Blue Text */
        border-bottom-color: #e2e8f0 !important;
        /* OVERRIDE BLUE BORDER */
    }

    /* Reset Dropdown Menus */
    #mainNav .nav-dropdown {
        width: 100%;
        text-align: center;
        margin: 0 !important;
        /* Reset margin */
        padding: 0 !important;
        /* Reset padding */
        border: none !important;
        background: transparent !important;
    }

    #mainNav .dropdown-menu {
        display: none !important;
        /* Adjust if submenus needed later */
    }

    /* MENU TOGGLE BUTTON (BURGER) - Z-Index 10002 (Highest) */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid #e2e8f0;
        color: #1e293b;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 10002 !important;
        /* Highest priority */
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        color: #2563eb;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-section {
    padding: 80px 0;
    margin-bottom: 40px;
    /* Light background for section */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Form slightly wider */
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Card (Left) */
.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: #64748b;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: #2563eb;
}

.map-container {
    flex: 1;
    /* Fill remaining space */
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Card (Right) */
.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #475569;
    /* Slate 600 */
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
    color: #334155;
    background: #f8fafc;
}

.form-control:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Success/Error Message Styles */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}