/* style.css */
/* Geliştirilmiş Material Design renk paleti ve tasarım sistemi */
:root {
    --primary: #0096B1;
    --primary-variant: #00B4CC;
    --primary-light: #E6F7FA;
    --primary-dark: #007A8F;
    --accent: #C94D62;
    --accent-variant: #A82F5C;
    --accent-light: #F9E8EC;
    --accent-dark: #A82F5C;
    --surface: #ffffff;
    --surface-variant: #f5f5f5;
    --bg: #f6f7f9;
    --bg-light: #fafafa;
    --muted: #6b7280;
    --muted-light: #9ca3af;
    --text: #111827;
    --text-secondary: #5f6368;
    --card-radius: 16px;
    --chip-radius: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-variant));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.logo:hover .badge {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* Search Bar with Dropdown */
.search-container {
    position: relative;
    flex: 1;
    max-width: 500px;
    display: flex;
}

.search-type-select {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: var(--surface);
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    min-width: 140px;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
}

.search-bar {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0 12px 12px 0;
    background: var(--surface);
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-bar:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 150, 177, 0.1), var(--shadow-md);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 32px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.banner::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.banner h2 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 80%;
    position: relative;
    z-index: 1;
}

/* Promo Bar */
.promo-bar {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
}

.promo-bar strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 4px;
}

/* Sections */
.section {
    margin-top: 32px;
}

.section h3 {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

/* Categories */
.chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
     /* Scrollbar stilleri */
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

.chips::-webkit-scrollbar {
    display: none;
}

.chip {
    flex: 0 0 auto;
    padding: 12px 20px;
    border-radius: var(--chip-radius);
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.chip:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.chip.selected {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Expert list */
.list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: var(--surface);
    border-radius: var(--card-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #ddd;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.status-dot {
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--surface);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.status-dot.online {
    background: #10b981;
}

.status-dot.offline {
    background: #9ca3af;
}

.card-body {
    flex: 1;
}

.name {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--text);
}

.job {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.fee {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 14px;
    color: var(--muted);
}

.star {
    color: #fbbf24;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 130px;
}

/* Buttons */
.btn {
    padding: 12px 16px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    box-shadow: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.view {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 6px rgba(201, 77, 98, 0.2);
	text-decoration: none; /* Bu satırı ekleyin */
}

.btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 6px rgba(0, 150, 177, 0.2);
	text-decoration: none; /* Bu satırı ekleyin */
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--muted);
}

.btn.ghost:hover {
    background: var(--bg-light);
    color: var(--text);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-btn,
.auth-btnmobile {
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-btn:hover,
.auth-btnmobile:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Masaüstü - mobil butonları gizle */
.auth-btnmobile {
    display: none;
}

/* How It Works Section */
.how-it-works {
    margin-top: 48px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.hiw-card {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.hiw-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.hiw-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
    font-size: 24px;
}

.hiw-card h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
}

.hiw-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    width: 100%;
    max-width: 760px;
    background: var(--surface);
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-xl);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 12px;
    align-items: center;
}

.modal-body {
    padding: 24px;
    overflow: auto;
}

.modal-title {
    font-weight: 800;
    font-size: 20px;
}

.dates-row {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.dates-row::-webkit-scrollbar {
    display: none;
}

.date-chip {
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    min-width: 85px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.date-chip:hover {
    background: var(--accent-light);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.date-chip.selected {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 77, 98, 0.15);
}

.times-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.time-chip {
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--accent-light);
    border: 1px solid rgba(201, 77, 98, 0.06);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.time-chip:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.time-chip.selected {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 77, 98, 0.15);
}

/* modal footer button stays visible and not under nav/keyboard */
.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
    position: sticky;
    bottom: env(safe-area-inset-bottom, 0);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.modal-footer .pay-btn {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    border: 0;
    background: var(--accent);
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.modal-footer .pay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 77, 98, 0.25);
}

.modal-footer .pay-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
footer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    background: var(--surface);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}

/* Blog Section */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-title h6 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.section-title h2 span {
    color: var(--primary);
}

.view-all-btn {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* 3'lü Grid Sistem */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Blog Kartları */
.blog-card {
    background: var(--surface);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-date {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.blog-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    margin-top: auto;
}

.read-more-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* Yükleme durumları için */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Tasarım */
@media (min-width: 1024px) {
    .list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: nowrap;
        width: 100%;
        padding: 12px 16px;
        align-items: center;
        min-height: 60px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        position: static;
        /* fixed pozisyonu kaldır */
        transform: none;
    }

    .logo img {
        max-width: 120px;
        /* Logo boyutunu küçült */
    }

    .search-container {
        max-width: 100%;
        margin-top: 12px;
    }

    .banner h2 {
        font-size: 24px;
    }

    .banner p {
        max-width: 100%;
    }

    .list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card {
        flex-direction: column;
    }

    .card .actions .btn.view {
        display: none;
    }

    .avatar {
        width: 70px;
        height: 70px;
    }

    .actions {
        min-width: 120px;
    }

    .modal {
        border-radius: 14px 14px 0 0;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 0;
        /* Üst boşluğu sıfırla */
        align-items: center;
    }

    .auth-btn {
        display: none;
    }

    .auth-btnmobile {
        display: flex;
        gap: 6px;
    }

    .auth-buttons {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .search-container {
        display: none;
    }

    .blog-section {
        padding: 40px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .banner {
        padding: 24px;
    }

    .card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .actions {
        width: 100%;
        flex-direction: row;
    }

    .btn {
        flex: 1;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .pay-btn {
        width: 100%;
    }

    .search-container {
        flex-direction: column;
    }

    .search-type-select {
        border-radius: 12px 12px 0 0;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: none;
    }

    .search-bar {
        border-radius: 0 0 12px 12px;
    }

    .blog-section {
        padding: 30px 0;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-image {
        height: 180px;
    }
}

/* Daha küçük ekranlar için ek ayar */
@media (max-width: 480px) {
    header {
        padding: 10px 12px;
        min-height: 56px;
    }

    .auth-btnmobile {
        padding: 8px 12px;
        font-size: 13px;
    }
}


footer {
    margin-top: 60px;
    padding: 40px 0 20px;
    background: var(--surface);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

