/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --primary-color: #111f0e;  /* Koyu yeşil/siyah tonu */
    --secondary-color: #ffffff;
    --accent-color: #3a6b30; /* Sarı yerine koyu yeşil */
}

/* Navbar Güncellenmiş Stiller */
.navbar {
    background-color: var(--primary-color);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 120px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
    padding-top: 0;
    margin-top: 30px;
}

/* Logo Stili */
.logo {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--primary-color);
    margin-top: 20px;
    z-index: 1001;
}

.logo img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s;
    margin: 10%;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 0.5rem 1.5rem;
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    margin-top: 30px;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s;
    border-radius: 3px;
}

/* Mobil Menü Açık Durumu */
.mobile-menu-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

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

/* Navbar Stili */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.contact-info {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    color: white;
}

/* Modern Section Başlıkları */
.section-header {
    margin-bottom: 4rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(58, 107, 48, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Hakkımızda Bölümü */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.about-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

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

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

.about-content {
    padding: 3rem;
}

.about-content > p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.about-list {
    list-style: none;
    display: grid;
    gap: 2rem;
}

.about-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-list-icon {
    width: 35px;
    height: 35px;
    background: rgba(58, 107, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-list-icon i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.about-list-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-list-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-image-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 600px;
}

.about-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.about-img.active {
    opacity: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 2;
}

/* Hizmetler Bölümü */
.services {
    padding: 8rem 0;
    background: #fff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
}

.service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-content > .service-header,
.service-content > p,
.service-content > .service-list {
    margin-bottom: 2rem;
}

.service-content > .service-list {
    flex-grow: 1;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    align-self: flex-start;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 107, 48, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: rotate(10deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 2rem;
}

.service-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-list-icon {
    width: 35px;
    height: 35px;
    background: rgba(58, 107, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-list-icon i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-list-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-list-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer Stili */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5rem 5% 2rem;
    position: relative;
}

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

/* Footer Başlıkları */
.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Şirket Bilgisi */
.company-info {
    max-width: 400px;
}

.company-desc {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* İletişim Bilgileri */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.contact-item:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

/* Hızlı Bağlantılar */
.quick-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-links ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding: 4px 0;
}

.quick-links ul a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.quick-links ul a:hover {
    color: var(--accent-color);
}

.quick-links ul a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Çalışma Saatleri */
.hours-detail p {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-detail p:last-child {
    border-bottom: none;
}

.hours-detail span {
    color: var(--accent-color);
    font-weight: 500;
}

/* Alt Footer */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    opacity: 0;
    transition: all 0.3s;
}

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

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    /* Başlıkları Ortala */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-tag {
        font-size: 1.1rem;
        padding: 0.6rem 2rem;
        margin: 0 auto 1.2rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
        font-weight: 700;
    }

    /* Hizmet Kartları Düzeltme */
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        margin: 0 1rem;
    }

    .service-content {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .service-list {
        text-align: left;
    }

    .service-list li {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-content {
        gap: 3rem;
    }

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

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h4::after {
        left: 0;
        transform: none;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .hours-detail p {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .quick-links ul {
        gap: 0.8rem;
    }

    .quick-links ul a {
        display: block;
        padding: 0.5rem 0;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .service-header h3 {
        font-size: 1.8rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        padding: 2rem;
    }

    .about-list li {
        gap: 1rem;
    }

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

    .hero-content {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .slider-controls {
        bottom: 20px;
    }

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

    .slide iframe {
        width: 100vh;
        height: 56.25vh;
        min-height: 177.77vw;
        min-width: 100vw;
        transform: translate(-50%, -50%) scale(1.8);
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 90px;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .mobile-menu-btn {
        margin-top: 25px;
    }

    .nav-container {
        width: 100%;
    }

    .hero {
        padding-top: 90px;
    }

    .language-selector {
        margin-top: 20px;
    }

    .right-menu {
        margin-top: 20px;
    }
    
    .contact-btn span {
        display: none;
    }
    
    .contact-btn {
        padding: 8px;
        aspect-ratio: 1;
        justify-content: center;
    }
    
    .contact-btn i {
        margin: 0;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 80px;
    }

    footer {
        padding: 3rem 5% 2rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .contact-items {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-header {
        padding: 0 1.5rem;
        margin-bottom: 2.5rem;
    }

    .section-tag {
        font-size: 1rem;
        padding: 0.5rem 1.8rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-content,
    .service-content,
    .mv-content {
        padding: 1.5rem;
    }

    .about-list,
    .service-list,
    .mv-list {
        gap: 1.5rem;
    }

    .slide iframe {
        width: 100vh;
        height: 56.25vh;
        min-height: 177.77vw;
        min-width: 100vw;
        transform: translate(-50%, -50%) scale(2.2);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-card,
    .service-card,
    .mv-card {
        margin: 0 1rem;
    }

    .about-list-icon,
    .service-list-icon,
    .mv-list-icon {
        width: 30px;
        height: 30px;
    }

    .service-icon,
    .mv-icon {
        width: 50px;
        height: 50px;
    }

    .about-list-content h4,
    .service-list-content h4,
    .mv-list-content h4 {
        font-size: 1.1rem;
    }

    .about-content > p,
    .service-content > p,
    .mv-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .mv-content {
        padding: 2rem;
    }
    
    .mv-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mv-list li {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .mv-list-content {
        text-align: left;
    }
}

/* Yatay Mobil Cihazlar */
@media (max-height: 500px) and (orientation: landscape) {
    .slide iframe {
        width: 100vw;
        height: 177.77vw; /* 16:9 aspect ratio */
        transform: translate(-50%, -50%) scale(0.6);
    }

    .hero-content {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 998;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Yukarı Çık Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 37.5px;
    background-color: var(--accent-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(58, 107, 48, 0.4);
}

/* Video Slider */
.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

@media (max-width: 768px) {
    .slide iframe {
        width: 100vh;
        height: 56.25vh;
        min-height: 177.77vw;
        min-width: 100vw;
        transform: translate(-50%, -50%) scale(1.8);
    }
}

@media (max-width: 576px) {
    .slide iframe {
        width: 100vh;
        height: 56.25vh;
        min-height: 177.77vw;
        min-width: 100vw;
        transform: translate(-50%, -50%) scale(2.2);
    }
}

/* Video üzerinde yarı saydam overlay */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Hero içeriğini overlay'in üzerine getir */
.hero-content {
    position: relative;
    z-index: 5;
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* İş Ortakları Stili */
.partners {
    padding: 8rem 0;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.partner-card:hover {
    transform: translateY(-15px);
}

.partner-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 3rem;
}

.partner-image img {
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.partner-content {
    text-align: center;
    padding: 1.5rem;
}

.partner-content h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.partner-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.partner-link:hover {
    gap: 1.5rem;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 107, 48, 0.3);
}

.partner-link i {
    transition: all 0.3s;
}

.partner-link:hover i {
    transform: translateX(5px);
}

/* Misyon & Vizyon Stili */
.mission-vision {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
}

.mv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.mv-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

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

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

.mv-content {
    padding: 3rem;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 107, 48, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    background: var(--accent-color);
    transform: rotate(10deg);
}

.mv-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon i {
    color: white;
}

.mv-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.mv-content > p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.mv-list {
    list-style: none;
    display: grid;
    gap: 2rem;
}

.mv-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mv-list-icon {
    width: 35px;
    height: 35px;
    background: rgba(58, 107, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-list-icon i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.mv-list-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mv-list-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .mv-content {
        padding: 2rem;
    }
    
    .mv-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mv-list li {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .mv-list-content {
        text-align: left;
    }
}

/* Projeler Stili */
.projects {
    padding: 8rem 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.project-card:hover {
    transform: translateY(-15px);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.project-category {
    background: rgba(58, 107, 48, 0.9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.project-features span {
    color: #555;
    font-size: 0.9rem;
}

.project-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    align-self: flex-start;
}

.project-link:hover {
    gap: 1.5rem;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 107, 48, 0.3);
}

.project-link i {
    transition: all 0.3s;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* İş Ortakları Stili */
.partner-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.partner-content {
    padding: 2.5rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.partner-link:hover {
    gap: 1.5rem;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 107, 48, 0.3);
}

.partner-link i {
    transition: all 0.3s;
}

.partner-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .project-content,
    .partner-content {
        padding: 2rem;
    }

    .project-card,
    .partner-card {
        margin: 0 1rem;
    }

    .project-features {
        flex-direction: column;
        gap: 1rem;
    }
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.service-link:hover {
    gap: 1.5rem;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 107, 48, 0.3);
}

.service-link i {
    transition: all 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive Tasarım */
@media (min-width: 993px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 0 0 0;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    .mobile-menu-open .nav-container {
        right: 0;
    }

    .nav-links {
        width: 100%;
        padding: 0;
        margin: 0;
        flex-direction: column;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a {
        padding: 1rem 2rem;
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .language-selector,
    .contact-btn {
        display: none;
    }

    .navbar {
        height: 100px;
        align-items: flex-start;
    }

    .logo {
        width: 160px;
        height: 160px;
        margin-top: 0;
    }

    .hero {
        padding-top: 100px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(255,255,255,0.05);
        box-shadow: none;
        display: none;
        padding: 0;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 1rem 3rem;
    }

    .dropdown .fa-chevron-down {
        transition: transform 0.3s;
    }

    .dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* İletişim Formu Stili */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info-card::before,
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-info-card:hover::before,
.contact-form-card:hover::before {
    opacity: 1;
}

.contact-info-content {
    padding: 3rem;
}

.contact-info-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info-items {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    background: rgba(58, 107, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-info-item p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item p a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: transparent;
}

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

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #666;
    transition: all 0.3s;
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    background: white;
    color: var(--accent-color);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 107, 48, 0.3);
}

.submit-btn i {
    transition: all 0.3s;
}

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

/* Form Success/Error Messages */
.form-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.5s ease forwards;
}

.form-message.success {
    background: #28a745;
}

.form-message.error {
    background: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-info-content,
    .contact-form {
        padding: 2rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

.contact-map {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 576px) {
    .contact-map {
        margin-bottom: 1.5rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
}

/* Proje Popup Stili */
.project-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.popup-content {
    position: relative;
    background-color: white;
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.close-popup:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.popup-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.popup-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    margin: 0;
    padding: 8px;
    text-align: center;
}

.gallery-item.video-item {
    aspect-ratio: 4/3;
}

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

/* Mobil Responsive */
@media (max-width: 768px) {
    .popup-content {
        padding: 20px;
        margin: 10px;
    }

    .popup-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-item p {
        transform: translateY(0);
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .popup-content {
        padding: 15px;
        margin: 5px;
    }

    .popup-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item img {
        height: 180px;
    }

    .close-popup {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }

    .popup-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Resim Popup Stili */
.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
}

.image-popup img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius: 4px;
}

.close-image-popup {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-image-popup:hover {
    color: #bbb;
}

.gallery-item img,
.gallery-item video {
    cursor: pointer;
}

/* Galeri Navigasyon Okları */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    font-size: 20px;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-nav-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.image-popup.active .gallery-nav-btn {
    display: flex;
}

@media (max-width: 768px) {
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

/* Popup Açılış Animasyonu */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-popup.active {
    display: block;
    animation: fadeIn 0.3s;
}

.popup-content .section-header {
    padding: 20px;
    margin-top: 20px;
    border-bottom: 2px solid var(--accent-color);
    text-align: left;
}

.popup-content .section-header h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0;
} 