/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loading-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 2rem;
    animation: logoPulse 1s ease-in-out infinite;
}

.loading-bar-container {
    width: 300px;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: visible;
    margin: 0 auto;
    position: relative;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #065f46, #ffd700);
    border-radius: 10px;
    animation: loadingProgress 1.5s ease-in-out forwards;
    position: relative;
    overflow: visible;
}

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

.loading-bar::before {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #065f46, #ffd700);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: cylinderPulse 0.6s ease-in-out infinite;
}

/* Animasyonlar */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes cylinderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100vh;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: brightness(0.7) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    color: white;
    z-index: 4;
    position: relative;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section Hover Efektleri */
.hero-section:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-section:hover .hero-bg-video {
    filter: brightness(0.8) contrast(1.2);
    transform: scale(1.05);
}

.hero-section:hover .hero-overlay {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(1px);
}

.hero-section:hover .hero-section-title {
    background: linear-gradient(135deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.hero-section:hover .hero-section-description {
    opacity: 1;
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
    opacity: 0.6;
}

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

/* Responsive */
@media (max-width: 768px) {
    .loading-logo {
        width: 300px;
        height: 300px;
    }
    
    .loading-bar-container {
        width: 250px;
    }
    
    .hero-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        width: 250px;
        height: 250px;
    }
    
    .loading-bar-container {
        width: 200px;
    }
    
    .hero-section-title {
        font-size: 1.5rem;
    }
}

/* Rönesans Tarzı Alt Bölüm Stilleri */
.company-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.overview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.overview-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 400;
    margin-bottom: 2rem;
}

.overview-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #065f46, #ffd700);
    margin: 0 auto;
    border-radius: 2px;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
}

/* Banner Section */
.banner-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.banner-section:hover .banner-img {
    transform: scale(1.05);
}

/* Parçacık Işıklar */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, #ffffff, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 60px, #ffffff, transparent),
        radial-gradient(2px 2px at 240px 20px, #ffffff, transparent),
        radial-gradient(1px 1px at 280px 50px, #ffffff, transparent),
        radial-gradient(2px 2px at 320px 80px, #ffffff, transparent),
        radial-gradient(1px 1px at 360px 40px, #ffffff, transparent),
        radial-gradient(2px 2px at 400px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 440px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 480px 60px, #ffffff, transparent),
        radial-gradient(1px 1px at 520px 90px, #ffffff, transparent),
        radial-gradient(2px 2px at 560px 20px, #ffffff, transparent),
        radial-gradient(1px 1px at 600px 50px, #ffffff, transparent),
        radial-gradient(2px 2px at 640px 80px, #ffffff, transparent),
        radial-gradient(1px 1px at 680px 40px, #ffffff, transparent),
        radial-gradient(2px 2px at 720px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 760px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 800px 100px;
    animation: particleFloat 8s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 50px 20px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 100px 60px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 150px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 200px 80px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 250px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 300px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 350px 50px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 400px 90px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 450px 25px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 500px 65px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 550px 45px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 600px 85px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 650px 35px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 700px 75px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 750px 55px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 800px 100px;
    animation: particleFloat 12s linear infinite reverse;
    z-index: 2;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(500px);
    }
}

/* Faaliyet Alanları */
.activities-section {
    padding: 6rem 0;
    background: #ffffff;
}

.activities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.activities-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #065f46, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
}

.activity-icon i {
    font-size: 2rem;
    color: white;
}

.activity-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.activity-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Tamamladığımız Projeler */
.completed-projects {
    padding: 6rem 0;
    background: #f8fafc;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.projects-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #065f46, #ffd700);
    margin: 0 auto;
    border-radius: 2px;
}

/* Proje Galerisi */
.project-gallery {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Projeler Tablosu */
.projects-table-section {
    max-width: 1200px;
    margin: 0 auto;
}

.table-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.projects-table thead {
    background: linear-gradient(135deg, #065f46, #ffd700);
    color: white;
}

.projects-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.projects-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.projects-table tbody tr {
    transition: background-color 0.3s ease;
}

.projects-table tbody tr:hover {
    background-color: #f8fafc;
}

.projects-table tbody tr:last-child td {
    border-bottom: none;
}

/* Durum Etiketleri */
.status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    display: inline-block;
}

.status.completed {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* İkinci Banner Section */
.second-banner-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.second-banner-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.second-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.second-banner-section:hover .second-banner-img {
    transform: scale(1.05);
}

.second-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.second-banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.second-banner-title {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Haberler */
.news-section {
    padding: 6rem 0;
    background: #ffffff;
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-title-main {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.news-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.news-divider {
    width: 80px;
    height: 4px;
    margin: 0.5rem auto 0;
    border-radius: 2px;
    background: linear-gradient(135deg, #065f46, #ffd700);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.news-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.news-card:hover .news-media img {
    transform: scale(1.06);
}

.news-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
}

.news-badge {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #065f46, #0ea5e9);
    color: #fff;
    font-weight: 600;
}

.news-date {
    color: #64748b;
}

.news-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.news-excerpt {
    color: #475569;
    font-size: .98rem;
    line-height: 1.6;
}

.news-link {
    margin-top: .25rem;
    color: #065f46;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: transform .2s ease, color .2s ease;
}

.news-link i {
    transition: transform .2s ease;
}

.news-link:hover {
    color: #0f766e;
}

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

.news-actions {
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
}

.news-all-btn {
    display: inline-block;
    padding: .9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    color: #0f172a;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
    font-weight: 700;
    transition: all .25s ease;
}

.news-all-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Footer Stilleri */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 95, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
}

.footer-company-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.company-tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-weight: 500;
}

.company-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #065f46, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #ffd700, #065f46);
}

.footer-links-section h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffd700;
    position: relative;
}

.footer-links-section h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #065f46, #ffd700);
    border-radius: 2px;
}

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

.footer-links li,
.footer-services-list li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-services-list li {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-services-list i {
    color: #ffd700;
    font-size: 0.8rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    background: transparent;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
    background: transparent;
}

.contact-item div {
    background: transparent;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.copyright p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .overview-title {
        font-size: 2.5rem;
    }
    
    .activities-title,
    .projects-title,
    .news-title-main {
        font-size: 2rem;
    }
    
    .second-banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .company-overview,
    .activities-section,
    .completed-projects,
    .news-section {
        padding: 4rem 0;
    }
    
    .overview-title {
        font-size: 2rem;
    }
    
    .activities-title,
    .projects-title,
    .news-title-main {
        font-size: 1.8rem;
    }
    
    .second-banner-title {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
