/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(41, 120, 112);
    --primary-dark: #1a4d47;
    --primary-light: #3a9d92;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8fafc;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    color: var(--text-light);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.top-bar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 35px;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    padding: 6px 12px;
    border-radius: 8px;
}

.contact-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

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

.social-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== MAIN NAVIGATION ===== */
.nav-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    position: relative;
}

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

.nav-item {
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.nav-item:hover {
    z-index: 100;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 24px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.nav-link i.fas {
    font-size: 12px;
    opacity: 0.7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
    color: var(--primary-color);
}

.nav-link:hover::before,
.nav-item:hover > .nav-link::before {
    left: 0;
    right: 0;
}

.nav-link:hover i.fas,
.nav-item:hover > .nav-link i.fas {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-arrow {
    font-size: 10px;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 260px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 12px;
    margin-top: 8px;
    z-index: 1000;
}

/* Hover köprüsü - nav-link ile dropdown arası boşluğu doldurur */
.nav-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    display: none;
}

.nav-item:hover::before {
    display: block;
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(41, 120, 112, 0.08), rgba(41, 120, 112, 0.04));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 2px 2px 0;
    transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-link:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.dropdown-link:hover::before {
    opacity: 1;
}

.dropdown-link:hover::after {
    height: 20px;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    margin: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(41, 120, 112, 0.3);
}

.mobile-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 120, 112, 0.4);
}

.mobile-toggle:active {
    transform: scale(0.98);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    width: 100%;
    height: 75vh;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video & Image Background */
.slide-video,
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.slide-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-description {
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.slide-btn {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.slide-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    background: white;
    width: 40px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* ===== SHORTCUT CARDS ===== */
.shortcut-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 40px 30px;
    pointer-events: none;
}

.shortcuts-left,
.shortcuts-right {
    display: flex;
    gap: 15px;
    pointer-events: auto;
}

.shortcut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.shortcut-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.shortcut-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.shortcut-card:hover .shortcut-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.shortcut-icon i {
    font-size: 24px;
    color: white;
}

.shortcut-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-indicator i {
    font-size: 20px;
    animation: arrowBounce 1.5s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    position: relative;
    padding: 0;
    background: #1a1f2e;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.statistics-section .container {
    max-width: 100%;
    padding: 0;
}

/* Stat Card - Minimal & Sleek */
.stat-card {
    background: transparent;
    border-radius: 0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

/* Stat Icon - Hidden */
.stat-icon {
    display: none;
}

/* Stat Number - Large & Bold */
.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Stat Label - Minimal */
.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
}

/* ===== LATEST NEWS SECTION ===== */
.latest-news {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.latest-news::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 120, 112, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.latest-news::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(41, 120, 112, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(41, 120, 112, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 120, 112, 0.3);
}

.view-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* News Grid - Modern Masonry Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

/* Featured Card - Büyük Kart */
.news-card:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Small Cards */
.news-card:nth-child(2),
.news-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.news-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* News Image */
.news-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex: 1;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder icon */
.news-image::before {
    content: '\f03e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 48px;
    color: #cbd5e1;
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.news-image::after {
    content: 'Görsel Yükleniyor...';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

/* Featured card için daha yüksek görsel */
.news-card:first-child .news-image {
    height: 65%;
}

.news-card:first-child .news-image::before {
    font-size: 64px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Image loaded olduğunda placeholder'ı gizle */
.news-image img[src]:not([src=""]) {
    background: white;
}

.news-image.loaded::before,
.news-image.loaded::after {
    display: none;
}

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

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    z-index: 10;
    transition: var(--transition);
}

/* Featured card için daha büyük kategori badge */
.news-card:first-child .news-category {
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.news-card:hover .news-category {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* News Content */
.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
}

/* Featured card için daha büyük content */
.news-card:first-child .news-content {
    padding: 35px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Featured card için daha büyük meta */
.news-card:first-child .news-meta {
    gap: 25px;
    margin-bottom: 18px;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Featured card için daha büyük meta text */
.news-card:first-child .news-date,
.news-card:first-child .news-author {
    font-size: 15px;
    font-weight: 600;
}

.news-date i,
.news-author i {
    color: var(--primary-color);
    font-size: 12px;
}

.news-card:first-child .news-date i,
.news-card:first-child .news-author i {
    font-size: 14px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Featured card için daha büyük başlık */
.news-card:first-child .news-title {
    font-size: 28px;
    font-weight: 800;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

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

.news-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured card için daha fazla metin */
.news-card:first-child .news-excerpt {
    font-size: 16px;
    -webkit-line-clamp: 4;
    margin-bottom: 25px;
    line-height: 1.8;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
    position: relative;
}

/* Featured card için daha büyük link */
.news-card:first-child .news-link {
    font-size: 16px;
    font-weight: 700;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(41, 120, 112, 0.3);
}

.news-card:first-child .news-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 120, 112, 0.4);
}

.news-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 50%, #0a0f1e 100%);
    position: relative;
    overflow: hidden;
}

/* Animated grid pattern */
.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(41, 120, 112, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 120, 112, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Top accent line with animation */
.companies-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 20%,
        #60a5fa 50%,
        var(--primary-color) 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: lineShimmer 3s ease-in-out infinite;
}

@keyframes lineShimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

/* Floating orb 1 */
.companies-section .container::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(41, 120, 112, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb1 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
        opacity: 0.7;
    }
}

/* Floating orb 2 */
.companies-section .container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: floatOrb2 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.7;
    }
    66% {
        transform: translate(40px, -40px) scale(0.85);
        opacity: 0.6;
    }
}

/* Geometric shapes */
.companies-grid::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(41, 120, 112, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: shapeRotate 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        transform: rotate(180deg);
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        transform: rotate(360deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Geometric shapes 2 */
.companies-grid::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(96, 165, 250, 0.08);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    animation: shapeFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50px) scale(1.2);
        opacity: 0.6;
    }
}

.companies-section .container {
    position: relative;
    z-index: 1;
}

.companies-section .section-title-wrapper {
    position: relative;
    z-index: 2;
}

.companies-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.companies-section .section-title {
    color: white;
    text-shadow: 0 2px 20px rgba(41, 120, 112, 0.3);
}

.companies-section .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 700px;
}

.companies-section .view-all-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.companies-section .view-all-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(41, 120, 112, 0.4);
}

/* Companies Grid - 4 Columns Side by Side */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

/* Company Card - Compact Glass Design */
.company-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.92) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

/* Animated border glow */
.company-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg,
        rgba(41, 120, 112, 0.6) 0%,
        rgba(96, 165, 250, 0.6) 50%,
        rgba(167, 139, 250, 0.6) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Shine effect */
.company-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(41, 120, 112, 0.03) 45%,
        rgba(41, 120, 112, 0.08) 50%,
        rgba(41, 120, 112, 0.03) 55%,
        transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.company-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.company-card:hover {
    transform: translateY(-16px);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(41, 120, 112, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.company-card:hover::before {
    opacity: 1;
}

/* Company Logo */
.company-logo {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(248, 250, 252, 0.8) 0%,
        rgba(241, 245, 249, 0.7) 100%);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.company-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(41, 120, 112, 0.08) 0%,
        rgba(96, 165, 250, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.company-card:hover .company-logo {
    transform: scale(1.05);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 100%);
    border-color: rgba(203, 213, 225, 0.8);
    box-shadow: 0 8px 32px rgba(41, 120, 112, 0.15);
}

.company-card:hover .company-logo::before {
    opacity: 1;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.95) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.company-card:hover .company-logo img {
    filter: grayscale(0%) brightness(1) drop-shadow(0 4px 12px rgba(41, 120, 112, 0.2));
    transform: scale(1.08);
}

/* Company Info */
.company-info {
    text-align: center;
    width: 100%;
}

.company-name {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: all 0.4s ease;
    letter-spacing: -0.2px;
}

.company-card:hover .company-name {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.company-sector {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.company-card:hover .company-sector {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d9687 100%);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(41, 120, 112, 0.4);
}

/* Placeholder for missing logos */
.company-logo::after {
    content: '\f1ad';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 50px;
    color: #cbd5e1;
    position: absolute;
    opacity: 0.3;
    z-index: 0;
}

.company-logo img {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Contact Info */
.contact-info-side {
    position: relative;
}

.contact-info-side .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info-side .section-title {
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d9687 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(41, 120, 112, 0.2);
}

.contact-detail-item:hover .contact-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 24px rgba(41, 120, 112, 0.3);
}

.contact-detail-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-detail-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Right Side - Contact Form */
.contact-form-side {
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(41, 120, 112, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    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='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d9687 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(41, 120, 112, 0.3);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(41, 120, 112, 0.4);
}

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

.submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .nav-link {
        padding: 18px 14px;
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .nav-link {
        padding: 18px 12px;
        font-size: 12.5px;
    }

    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .nav-link {
        padding: 18px 10px;
        font-size: 12px;
        gap: 4px;
    }

    .contact-info {
        gap: 20px;
    }

    .top-bar-container {
        padding: 10px 20px;
    }

    .nav-link i.fas {
        font-size: 11px;
    }

    .nav-arrow {
        font-size: 9px;
    }

    /* Companies Responsive - 2 columns on tablet */
    .companies-section {
        padding: 80px 0;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .company-card {
        padding: 35px 25px;
    }

    .company-logo {
        height: 130px;
        padding: 25px;
    }

    .company-name {
        font-size: 17px;
    }

    .company-sector {
        font-size: 11px;
    }
}

@media (max-width: 950px) {
    .nav-link {
        padding: 16px 8px;
        font-size: 11.5px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Statistics Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 40px 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-card:nth-child(2n) {
        border-right: none;
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .stat-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 850px) {
    .top-bar-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .nav-container {
        padding: 0 20px;
        overflow-x: hidden;
    }

    .mobile-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    /* Latest News Responsive */
    .latest-news {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

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

    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 280px;
        gap: 20px;
    }

    /* Tablet view - 2 column layout */
    .news-card:first-child {
        grid-column: 1 / -1;
        grid-row: span 1;
    }

    .news-card:first-child .news-image {
        height: 60%;
    }

    .news-card:first-child .news-title {
        font-size: 24px;
    }

    .news-card:first-child .news-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .news-content {
        padding: 20px;
    }

    .news-card:first-child .news-content {
        padding: 25px;
    }

    .news-card:first-child .news-link {
        padding: 10px 24px;
        font-size: 15px;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        border-radius: 16px;
        margin-top: 10px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .main-nav.active {
        display: flex;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        font-size: 14px;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: linear-gradient(90deg, rgba(41, 120, 112, 0.06), transparent);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin: 0;
        border-radius: 0;
        border: none;
        display: none;
        padding: 8px 0;
        pointer-events: auto;
        z-index: 1;
    }

    .nav-item.dropdown-active .dropdown-menu {
        display: block;
        animation: fadeIn 0.25s ease-out;
    }

    .dropdown-link {
        padding: 12px 20px 12px 40px;
        font-size: 13.5px;
        border-radius: 8px;
        margin: 0 12px;
    }

    .dropdown-link::before,
    .dropdown-link::after {
        display: none;
    }

    .dropdown-link:hover {
        padding-left: 44px;
        background: rgba(41, 120, 112, 0.1);
    }

    /* Hero Slider Responsive */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

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

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

    .slide-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

    .scroll-indicator {
        bottom: 140px;
    }

    /* Shortcut Cards Responsive */
    .shortcut-cards {
        padding: 0 20px 30px;
    }

    .shortcut-card {
        min-width: 110px;
        padding: 16px 20px;
    }

    .shortcut-icon {
        width: 45px;
        height: 45px;
    }

    .shortcut-icon i {
        font-size: 20px;
    }

    .shortcut-text {
        font-size: 12px;
    }

    /* Contact Responsive - Tablet */
    .contact-section {
        padding: 80px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-side {
        padding: 40px;
    }

    /* Companies Responsive - Single column on small tablet */
    .companies-section {
        padding: 70px 0;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 45px;
    }

    .company-card {
        padding: 30px 20px;
        gap: 18px;
    }

    .company-logo {
        height: 110px;
        padding: 20px;
    }

    .company-name {
        font-size: 16px;
    }

    .company-sector {
        font-size: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 640px) {
    /* Shortcut Cards Tablet/Small Mobile */
    .shortcut-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0 15px 20px;
    }

    .shortcuts-left,
    .shortcuts-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* Statistics Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 35px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-card:nth-child(2n) {
        border-right: none;
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
    }

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

    .stat-label {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

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

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

    .slide-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Shortcut Cards Mobile */
    .shortcut-cards {
        padding: 0 10px 15px;
    }

    .shortcuts-left,
    .shortcuts-right {
        gap: 8px;
    }

    .shortcut-card {
        min-width: 75px;
        padding: 10px 12px;
        gap: 6px;
    }

    .shortcut-icon {
        width: 35px;
        height: 35px;
    }

    .shortcut-icon i {
        font-size: 16px;
    }

    .shortcut-text {
        font-size: 10px;
    }

    .contact-item {
        font-size: 12px;
    }

    /* Latest News Mobile */
    .latest-news {
        padding: 50px 0;
    }

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

    .section-subtitle {
        font-size: 12px;
    }

    .view-all-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
        gap: 20px;
    }

    /* Mobile - tüm kartlar aynı boyutta */
    .news-card:first-child {
        grid-column: 1;
        grid-row: span 1;
    }

    .news-card:first-child .news-image {
        height: 50%;
    }

    .news-card:first-child .news-title {
        font-size: 22px;
        -webkit-line-clamp: 2;
    }

    .news-card:first-child .news-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .news-card:first-child .news-content {
        padding: 20px;
    }

    .news-image {
        height: 50%;
    }

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

    .news-excerpt {
        font-size: 13px;
    }

    .news-content {
        padding: 18px;
    }

    .news-card:first-child .news-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Companies Mobile - Single column */
    .companies-section {
        padding: 60px 0;
    }

    .companies-section .section-description {
        font-size: 15px;
        margin-top: 14px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .company-card {
        padding: 30px 25px;
        gap: 18px;
        border-radius: 20px;
    }

    .company-logo {
        height: 120px;
        padding: 22px;
        border-radius: 18px;
    }

    .company-name {
        font-size: 17px;
    }

    .company-sector {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .contact-form-side {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .contact-detail-item {
        gap: 16px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .contact-detail-content h4 {
        font-size: 16px;
    }

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

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 50%, #0a0f1e 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

/* Animated grid pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(41, 120, 112, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 120, 112, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Top accent line */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 20%,
        #60a5fa 50%,
        var(--primary-color) 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: lineShimmer 3s ease-in-out infinite;
}

.footer-content {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    position: relative;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(41, 120, 112, 0.3);
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 18px;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(41, 120, 112, 0.4);
}

/* Footer Column Title */
.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: white;
    padding-left: 24px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Footer Credit - Vertis Yazılım */
.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-credit span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.vertis-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vertis-link i {
    color: var(--primary-color);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-credit:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-credit:hover .vertis-link {
    color: white;
}

.footer-credit:hover .vertis-link i {
    color: #60a5fa;
    transform: scale(1.1);
}

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

@media (max-width: 640px) {
    .footer-content {
        padding: 60px 0 40px;
    }

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

    .footer-title {
        font-size: 24px;
    }

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

    .footer-column-title {
        font-size: 17px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .footer-credit {
        padding: 8px 14px;
    }

    .footer-credit span {
        font-size: 12px;
    }

    .vertis-link {
        font-size: 13px;
    }
}
