﻿
@font-face {
    font-family: "Vazirmatn";
    src: url("../assets/fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --accent-purple: #7c3aed;
    --accent-pink: #ec4899;
    --bg-main: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --card-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
    --card-shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Vazirmatn", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: "Vazirmatn", sans-serif;
}

body {
    font-family: "Vazirmatn", sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.45);
    z-index: 98;
    animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
    font-family: "Vazirmatn", sans-serif;
}

button, input, select, textarea {
    font-family: "Vazirmatn", sans-serif;
    border: none;
    outline: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin-bottom: 36px;
    padding: 22px 28px;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899);
}

.section-header h2 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.section-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.logo {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    background: none;
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
    border: none;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.menu-toggle .menu-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.menu-toggle .close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-360deg);
}

.menu-toggle.active .menu-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(360deg);
}

.menu-toggle.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.nav-links {
    list-style: none;
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px) scale(0.96);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    
    
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.hero {
    padding: 70px 0 60px;
    background: radial-gradient(circle at top right, #eff6ff 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
    filter: blur(50px);
}

.hero-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.hero-text h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
    background-color: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hero-image {
    width: 100%;
    max-width: 460px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stats-section {
    padding: 24px 0;
    margin-top: -28px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stats-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon img {
    width: 28px;
    height: 28px;
}

.stats-info h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.stats-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    object-fit: cover;
    min-height: 240px;
    background-color: #f1f5f9;
}

.about-text h3 {
    font-size: 21px;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 800;
}

.about-text p {
    font-size: 15px;
    line-height: 1.95;
    color: #475569;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--glass-bg);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
}

.feature-icon img {
    width: 26px;
    height: 26px;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

.gallery {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
}

.gallery-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    min-width: 100%;
    aspect-ratio: 16 / 9;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.gallery-button img {
    width: 22px;
    height: 22px;
    display: block;
}

.gallery-prev {
    right: 16px;
}

.gallery-next {
    left: 16px;
}

.gallery-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    z-index: 2;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transition: width 0.25s ease, background-color 0.25s ease;
    cursor: pointer;
}

.gallery-dot.active {
    width: 26px;
    border-radius: 10px;
    background-color: white;
}

.news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-item {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-image {
    width: 100%;
}

.news-image img {
    width: 100%;
    display: block;
}

.news-content {
    padding: 24px;
}

.news-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.news-header-row h3 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 700;
}

.news-date {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: #eff6ff;
    border-radius: 10px;
    flex-shrink: 0;
}

.news-content p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.news-content a {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.achievements-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.achievement-icon img {
    width: 28px;
    height: 28px;
}

.achievement-content {
    flex: 1;
}

.achievement-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.achievement-content h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
    color: var(--text-dark);
}

.achievement-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 26px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #d97706;
    background-color: #fef3c7;
    border-radius: 8px;
    white-space: nowrap;
}

.achievement-content p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.staff-item {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 280px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.staff-content {
    padding: 20px;
    text-align: center;
}

.staff-content h3 {
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.staff-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    font-family: "Vazirmatn", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    cursor: pointer;
    gap: 12px;
}

.faq-icon-toggle {
    font-family: "Vazirmatn", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.25s cubic-bezier(0, 1, 0, 1), padding 0.2s ease;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0 24px 20px 24px;
    transition: max-height 0.3s ease-in-out, padding 0.2s ease;
}

.faq-answer p {
    font-family: "Vazirmatn", sans-serif;
    font-size: 14px;
    line-height: 1.95;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-item {
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease;
}

.contact-item h3 {
    margin-bottom: 8px;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.9;
}

.contact-map {
    min-height: 320px;
    border-radius: 20px;
    background-color: #f1f5f9;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.footer {
    padding: 55px 0 24px;
    background-color: #0f172a;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid #334155;
    border-radius: 20px;
    background-color: rgba(30, 41, 59, 0.6);
}

.footer-brand h2 {
    font-size: 18px;
    font-weight: 700;
}

.footer-icon {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-icon a {
    background-color: #1e293b;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.25s ease, background-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.footer-icon a:active {
    transform: scale(0.92);
    background-color: #2563eb;
}

.footer-links {
    gap: 10px;
    display: grid;
    grid-template-columns: auto auto auto auto;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    background-color: #1e293b;
    padding: 10px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #334155;
}

.AghaSeyed {
    display: flex;
    justify-content: left;
    flex-direction: row-reverse;
    gap: 4px;
    color: #94a3b8;
}

.AghaSeyed a {
    color: #38bdf8;
    font-weight: 600;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
}

@media (hover: hover) {
    .nav-links a:hover {
        background-color: #eff6ff;
        color: var(--primary-color);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.38);
    }

    .btn-secondary:hover {
        background-color: #f8fafc;
        border-color: #94a3b8;
        transform: translateY(-3px);
    }

    .hero-image img:hover {
        transform: scale(1.02);
    }

    .stats-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
    }

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow-hover);
        border-color: #bfdbfe;
    }

    .gallery-button:hover {
        background-color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .news-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow-hover);
    }

    .news-content a:hover {
        color: var(--primary-hover);
    }

    .achievement-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow-hover);
    }

    .staff-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow-hover);
    }

    .faq-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        border-color: #bfdbfe;
    }

    .contact-item:hover {
        transform: translateY(-3px);
    }

    .footer-icon a:hover {
        transform: scale(1.15);
        background-color: #2563eb;
    }

    .footer-links a:hover {
        transform: translateY(-3px);
        background-color: #334155;
        color: white;
    }
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-links a {
        background-color: transparent;
    }

    .hero-content {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 60px;
    }

    .hero-text {
        flex: 1;
        text-align: right;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: start;
    }

    .hero-image {
        flex: 1;
        max-width: 480px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-content {
        flex-direction: row-reverse;
        align-items: center;
        gap: 60px;
    }

    .about-image {
        flex: 1;
        max-width: 500px;
    }

    .about-text {
        flex: 1;
    }

    .features-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .news-image {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .news-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .staff-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .staff-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .staff-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .footer-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-links {
        display: flex;
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 0;
    }
}

.skeleton-shimmer {
    background: linear-gradient(90deg, #e2e8f0 25%, #f8fafc 50%, #e2e8f0 75%) !important;
    background-size: 200% 100% !important;
    animation: skeleton-shimmer 1.5s infinite !important;
}

@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.img-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.img-lazy.loaded {
    opacity: 1;
}
.img-skeleton-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

.img-skeleton-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.img-skeleton-wrapper img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-skeleton-wrapper img.loaded {
    opacity: 1;
}

.img-skeleton-wrapper.loaded::after {
    display: none;
}

.footer-icon a { width: 54px; height: 54px; } .footer-icon a img { width: 34px; height: 34px; }

