:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
}

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: var(--text-main);
    min-height: 100vh;
    padding-bottom: 50px;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.main-container {
    max-width: 1000px;
    margin: 40px auto;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

#logo {
    max-width: 280px;
    height: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#logo:hover {
    transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--primary);
    padding: 4px 12px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb-nav a:hover {
    background: var(--primary);
    color: #fff;
}

.breadcrumb-nav .divider {
    color: var(--text-muted);
    align-self: center;
}

/* Grid for Links */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.list-group-item.altyapi-link {
    background: var(--card-bg);
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 16px !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.list-group-item.altyapi-link:hover {
    transform: translateY(-4px);
    border-color: var(--primary) !important;
    box-shadow: 0 15px 20px -10px rgba(79, 70, 229, 0.2);
}

.list-group-item.altyapi-link a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.list-group-item.altyapi-link:hover a {
    color: var(--primary) !important;
}

/* Search Input */
.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

#ara {
    width: 100%;
    padding: 14px 20px;
    border-radius: 30px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

#ara:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Results Table */
.result-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-modern th {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border: none;
}

.table-modern td {
    background: #f8fafc;
    padding: 20px;
    border: none;
}

.table-modern tr td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 600;
}

.table-modern tr td:last-child {
    border-radius: 0 12px 12px 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.status-yes {
    background: #dcfce7;
    color: #15803d;
}

.status-no {
    background: #fee2e2;
    color: #b91c1c;
}

/* Contact Form */
.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--card-shadow);
}

.form-label {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-control-modern {
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    padding: 12px 16px;
    transition: all 0.2s;
    background: #f8fafc;
}

.form-control-modern:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

#gonderbtn {
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    width: 100%;
    border: none;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    margin-top: 10px;
}

#gonderbtn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* Info Sections */
.info-section h1,
.info-section h2,
.info-section h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    margin-top: 2rem;
}

.info-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Banner area */
.banner-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.banner-row img {
    border-radius: 12px;
    max-width: 100%;
    height: auto !important;
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px;
        margin: 15px;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #logo {
        width: 100%;
    }
}