/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --hover-color: #000000;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--secondary-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.iaaf-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.fallback-logo {
    display: none;
}

.logo-link:has(img[src=""]) .fallback-logo,
.logo-link img:not([src])+.fallback-logo {
    display: inline-block;
}

.iaaf-logo {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    letter-spacing: 2px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    background-color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--text-light);
}

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

.header-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-social-icons .social-icon {
    color: var(--text-light);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social-icons .social-icon:hover {
    color: var(--primary-color);
}

.header-social-icons .social-icon svg {
    width: 18px;
    height: 18px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--text-light);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-btn:hover {
    border-color: var(--primary-color);
}

.language-btn svg {
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-btn svg {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.language-option:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.language-single {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 6px 12px;
    border: 1px solid var(--border-color);
}

.ubs-logo {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    padding: 60px 0 0;
}

.event-header {
    margin-bottom: 40px;
}

.event-date {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.event-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.title-main {
    font-weight: 700;
}

.title-divider {
    font-weight: 300;
    color: var(--primary-color);
}

.title-sub {
    font-weight: 700;
    color: var(--text-light);
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 60px;
    padding: 8px;
    background-color: #f8f8f8;
    border-radius: 12px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tab-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.tab-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Overview Text */
.overview-text {
    max-width: 900px;
    margin-bottom: 80px;
}

.overview-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 16px;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

/* Page Content */
.page-content {
    margin-bottom: 60px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    aspect-ratio: 1920 / 800;
    min-height: 400px;
    height: auto;
}

/* Mobilde web slider gizle */
@media (max-width: 768px) {
    .slider-container {
        display: none;
    }
}

/* Mobil Slider (Yatay - Standart) */
.mobile-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    display: none;
    /* Desktop'ta gizle */
}

.mobile-slider-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    /* Minimum yükseklik */
    height: 100vh;
    /* Viewport yüksekliği - görselin tam görünmesi için */
    max-height: 800px;
    /* Maksimum yüksekliği sınırı */
    margin: 0 auto;
    touch-action: pan-y pinch-zoom;
    overflow: hidden;
}

.mobile-slider-wrapper {
    display: flex;
    flex-direction: row;
    /* Yatay yönlendirme */
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y pinch-zoom;
}

.mobile-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    flex-shrink: 0;
}

.mobile-slide.active {
    opacity: 1;
}

.mobile-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 60px;
}

.mobile-slide-text {
    text-align: center;
    color: var(--secondary-color);
    z-index: 3;
    padding: 30px 20px;
    max-width: 90%;
}

.mobile-slide-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-slide-description {
    font-size: 16px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    line-height: 1.5;
}

.mobile-slide-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: #DEAB2A;
    border-color: #000000;
    border: 2px solid #000000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mobile-slide-btn:hover {
    background-color: #000000;
    color: #DEAB2A;
    border-color: #000000;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-slide-btn:active,
.mobile-slide-btn:focus {
    background-color: #000000;
    color: #DEAB2A;
    border-color: #000000;
    outline: none;
}

.mobile-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    pointer-events: none;
}

.mobile-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    flex-shrink: 0;
}

.mobile-slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-slider-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 100;
}

.mobile-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.mobile-dot.active {
    background: var(--secondary-color);
    width: 32px;
    height: 12px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .header-actions {
        display: none !important;
    }

    .main-nav {
        display: none;
    }

    .header-content {
        justify-content: center;
        /* Logo'yu ortala */
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        /* Toggle butonunu sağa sabitle */
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Mobilde mobil slider'ı göster */
@media (max-width: 768px) {
    .mobile-slider {
        display: block;
    }

    .mobile-slider-container {
        min-height: 400px;
        height: 70vh;
        /* Viewport yüksekliğinin %70'i - görselin tam görünmesi için */
        max-height: 600px;
    }

    .mobile-slide-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .mobile-slide-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .mobile-slide-text {
        padding: 24px 16px;
    }

    .mobile-slider-controls {
        padding: 0 15px;
    }

    .mobile-slider-btn {
        width: 36px;
        height: 36px;
    }

    .mobile-slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-slider-container {
        min-height: 350px;
        height: 60vh;
        /* Viewport yüksekliğinin %60'ı - görselin tam görünmesi için */

    }

    .mobile-slide-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .mobile-slide-description {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .mobile-slide-text {
        padding: 20px 14px;
    }

    .mobile-slider-btn {
        width: 36px;
        height: 36px;
    }

    .mobile-slider-btn svg {
        width: 16px;
        height: 16px;
    }

    .mobile-dot {
        width: 6px;
        height: 6px;
    }

    .mobile-dot.active {
        width: 6px;
        height: 20px;
    }
}


.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    flex-shrink: 0;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    padding-bottom: 80px;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    max-width: none;
    min-width: 100%;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide-text {
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    z-index: 3;
    padding: 40px;
    max-width: 800px;
    margin-bottom: 0;
}

.slide-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 24px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

/* Slider Buton Stili - Sistem ile Uyumlu */
.slide-text .btn-primary,
.slide-text .btn {
    background-color: #000000;
    color: #DEAB2A;
    border-color: #000000;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.slide-text .btn-primary:hover,
.slide-text .btn:hover {
    background-color: #000000;
    color: #DEAB2A;
    border-color: #000000;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-text .btn-primary:active,
.slide-text .btn-primary:focus,
.slide-text .btn:active,
.slide-text .btn:focus {
    background-color: #000000;
    color: #DEAB2A;
    border-color: #000000;
    outline: none;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Blog Detail Styles */
.blog-detail-content {
    margin: 0 auto 80px;
}

.blog-featured-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.blog-article {
    margin-bottom: 60px;
}

.blog-excerpt {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-content blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
    margin: 40px 0;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta-item i {
    font-size: 18px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.linkedin {
    background-color: #0077B5;
}

.related-blogs {
    margin-bottom: 80px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.cards-grid {
    display: grid;
    gap: 30px;
}

.cards-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.4;
}

.card-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-back {
    text-align: center;
    padding-bottom: 60px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .cards-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 32px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .event-date {
        text-align: center;
        width: 100%;
        margin-bottom: 8px;
    }

    .blog-excerpt {
        font-size: 18px;
        padding-left: 16px;
    }

    .blog-content {
        font-size: 16px;
    }

    .cards-grid-three {
        grid-template-columns: 1fr;
    }
}



.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--secondary-color);
    width: 32px;
    border-radius: 6px;
}

/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cards-grid-three {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
}

.cards-grid-four {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover .card-image::after {
    opacity: 1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.card:hover .placeholder-image {
    transform: scale(1.05);
}

.image-content {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--hover-color);
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 400;
    flex: 1;
    margin: 0;
}

/* News Section */
.news-section {
    margin-bottom: 60px;
}

.news-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.news-slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    will-change: transform;
}

.news-card {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.news-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.news-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-card-image::after {
    opacity: 1;
}

.news-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.news-card:hover .news-placeholder-image {
    transform: scale(1.05);
}

.news-image-content {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card-title {
    color: var(--hover-color);
}

.news-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-card-link:hover {
    color: var(--hover-color);
    gap: 10px;
}

/* News Slider Controls */
.news-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.news-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.news-slider-btn:active {
    transform: scale(0.95);
}

.news-slider-btn svg {
    width: 24px;
    height: 24px;
}

.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .event-title {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .header-actions {
        gap: 16px;
    }

    .header-social-icons {
        gap: 10px;
    }

    .header-social-icons .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

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

    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        padding: 15px 0;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 12px;
    }

    .header-social-icons {
        gap: 8px;
    }

    .header-social-icons .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .icon-btn {
        padding: 6px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .language-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .ubs-logo {
        font-size: 12px;
    }

    .iaaf-logo-img {
        height: 40px;
    }

    .iaaf-logo {
        font-size: 28px;
        padding: 10px 20px;
        letter-spacing: 1.8px;
    }


    .event-title {
        font-size: 48px;
        flex-wrap: wrap;
    }

    .tab-nav {
        gap: 6px;
        margin-bottom: 40px;
        padding: 6px;
        border-radius: 10px;
    }

    .tab-link {
        font-size: 13px;
        padding: 10px 18px;
        white-space: nowrap;
    }

    .overview-text {
        margin-bottom: 60px;
    }

    .overview-text p {
        font-size: 15px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .news-section {
        margin-top: 80px;
    }

    .cards-grid-three {
        grid-template-columns: 1fr;
    }

    .cards-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-image {
        height: 250px;
    }

    .slider-container {
        aspect-ratio: 1920 / 800;
        height: auto;
    }

    .slide-title {
        font-size: 42px;
    }

    .slide-description {
        font-size: 18px;
    }

    .slider-controls {
        padding: 0 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .card-content {
        padding: 24px;
    }

    .card-title {
        font-size: 20px;
    }

    .news-section {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .news-slider-container {
        padding: 0 50px;
    }

    .news-card {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (min-width: 1001px) {
    .news-card {
        flex: 0 0 calc(33.333% - 20px);
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 18px;
    }

    .iaaf-logo-img {
        height: 35px;
    }

    .iaaf-logo {
        font-size: 24px;
        padding: 8px 16px;
        letter-spacing: 1.5px;
    }

    .event-title {
        font-size: 36px;
    }

    .event-date {
        font-size: 13px;
    }

    .tab-nav {
        gap: 4px;
        padding: 4px;
        border-radius: 8px;
    }

    .tab-link {
        font-size: 12px;
        padding: 8px 14px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .news-section {
        margin-top: 60px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 14px;
    }

    .image-content {
        font-size: 16px;
    }

    .slider-container {
        aspect-ratio: 1920 / 800;
        height: auto;
    }


    .slide-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .news-section {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .news-slider-container {
        padding: 0 50px;
    }

    .news-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .news-slider-btn {
        width: 40px;
        height: 40px;
    }

    .news-slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .news-card-image {
        height: 160px;
    }

    .news-image-content {
        font-size: 24px;
    }

    .news-card-content {
        padding: 18px;
    }

    .news-card-date {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .news-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .news-card-excerpt {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .news-card-link {
        font-size: 13px;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.6s ease-out;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.social-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon {
    color: var(--text-light);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-color);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copyright p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.footer-partner {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .social-icons {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-label {
        font-size: 13px;
    }

    .social-icons {
        gap: 6px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .footer-partner {
        font-size: 11px;
    }
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.contact-info-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.contact-info-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--primary-color);
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-item label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
}

.kvkk-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.kvkk-link:hover {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: var(--font-primary);
}

.submit-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-info-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 200px;
    }

    .contact-icon-title {
        gap: 10px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-info-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-item {
        flex: 1 1 100%;
    }

    .contact-icon-title {
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-item h3 {
        font-size: 16px;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-form {
        gap: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* About Page Styles */
.about-content {
    margin-top: 40px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-image .placeholder-image {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.about-section {
    padding: 40px 30px;
    background-color: #f8f8f8;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    margin-bottom: 24px;
}

.about-section-icon svg {
    width: 32px;
    height: 32px;
}

.about-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding: 60px 40px;
    /* Site renk paletiyle uyumlu koyu arka plan + altın highlight */
    background:
        radial-gradient(circle at top left, rgba(222, 171, 42, 0.18), transparent 55%),
        #000000;
    border-radius: 16px;
}

.stat-item {
    text-align: center;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.about-history {
    margin-bottom: 60px;
}

.about-history h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--secondary-color);
    box-shadow: 0 0 0 4px var(--border-color);
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    padding-top: 4px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image .placeholder-image {
        height: 300px;
    }

    .about-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        margin-bottom: 60px;
    }

    .about-text h3 {
        font-size: 28px;
    }

    .about-sections {
        margin-bottom: 60px;
    }

    .about-section {
        padding: 30px 24px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-year {
        font-size: 20px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .about-content {
        margin-top: 30px;
    }

    .about-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-section {
        padding: 24px 20px;
    }

    .about-section-icon {
        width: 56px;
        height: 56px;
    }

    .about-section-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-section h3 {
        font-size: 20px;
    }

    .about-stats {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .about-history h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-item::before {
        left: -19px;
        width: 16px;
        height: 16px;
    }

    .timeline-year {
        font-size: 18px;
    }

    .timeline-content h4 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }
}

/* Newsletter Section Styles */
.newsletter-section {
    margin-top: 80px;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.newsletter-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.newsletter-btn {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-message {
    font-size: 14px;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    display: none;
}

.newsletter-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Newsletter Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        margin-top: 60px;
        margin-bottom: 40px;
        padding: 40px 20px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-description {
        font-size: 15px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .newsletter-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .newsletter-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .newsletter-input {
        padding: 12px 16px;
        font-size: 15px;
    }

    .newsletter-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-text {
    background-color: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    animation: whatsappSlideIn 0.3s ease-out;
}

.whatsapp-text strong {
    font-weight: 600;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-text {
    background-color: #20BA5A;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Sidebar Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu-open .mobile-menu-sidebar {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: #fafafa;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-light);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.mobile-menu-close:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.mobile-menu-nav {
    flex: 1;
    padding: 16px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav a {
    display: block;
    padding: 16px 24px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu-nav a:hover {
    background: #f8f8f8;
    color: var(--primary-color);
    padding-left: 28px;
}

.mobile-language-section {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.mobile-section-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mobile-language-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-language-item:hover {
    border-color: var(--primary-color);
    background: #f8f8f8;
}

.mobile-language-item.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.mobile-lang-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
}

.mobile-lang-emoji {
    font-size: 18px;
}

.mobile-social-section {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.mobile-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    transition: all 0.2s ease;
}

.mobile-social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Hamburger Animation */
.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Form Row - Two Column Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Compact Form Adjustments */
.compact-form .form-group {
    margin-bottom: 0;
}

.compact-form .form-row {
    margin-bottom: 0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 24px;
    padding: 12px 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.breadcrumb-item {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--text-light);
    padding: 0 8px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        margin-bottom: 16px;
        padding: 8px 0;
    }

    .breadcrumb-item,
    .breadcrumb-separator {
        font-size: 13px;
    }

    .breadcrumb-separator {
        padding: 0 6px;
    }
}

/* Form Controls - Bootstrap Style */
.form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: var(--font-primary);
}

.form-control:focus {
    color: var(--primary-color);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-select {
    display: block;
    width: 100%;
    padding: 10px 40px 10px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M1.5 4L6 8.5 10.5 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Filter Card Styles */
.filter-card .form-control,
.filter-card .form-select {
    background-color: #fff;
}

@media (max-width: 768px) {

    .form-control,
    .form-select {
        font-size: 16px;
        padding: 12px 14px;
    }

    .form-select {
        padding-right: 40px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}



/* Mobile-only fixes for Contact Page */
@media (max-width: 768px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        /* Prevent side scroll */
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Ensure specific elements don't overflow */
    .contact-info-item {
        width: 100%;
        box-sizing: border-box;
    }

    /* Stack form rows on mobile */
    .contact-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    /* Hide title divider on mobile */
    .title-divider {
        display: none;
    }

    /* Stack event title on mobile */
    .event-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Mobile specific adjustments for gallery caption */
    .gallery-caption {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Non-clickable Card Style */
.card.no-hover {
    cursor: default;
}

.card.no-hover:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.card.no-hover:hover .card-image::after {
    opacity: 0 !important;
}
/* Footer Grid Override for 6 Columns */
.footer-content { grid-template-columns: repeat(6, 1fr) !important; }
@media (max-width: 1200px) { .footer-content { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 768px) { .footer-content { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 576px) { .footer-content { grid-template-columns: 1fr !important; } }

/* Mobile Footer Accordion */
@media (max-width: 768px) {
    .footer-links { display: none; }
    .footer-section.active .footer-links { display: block; animation: slideDown 0.3s ease-out; }
    .footer-title { cursor: pointer; position: relative; padding-right: 20px; }
    .footer-title::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: bold; transition: transform 0.3s ease; }
    .footer-section.active .footer-title::after { content: '-'; transform: translateY(-50%) rotate(0deg); }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 768px) { .footer-text { display: none; } .footer-section.active .footer-text { display: block; } }
