/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding: 0 5%;
}

/* Header ve Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left .nav-links {
    justify-content: flex-end;
    margin-right: 1rem;
}

.nav-right .nav-links {
    justify-content: flex-start;
    margin-left: 1rem;
}

.nav-links li {
    position: relative;
    margin: 0 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #DC281E;
    font-weight: 700;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-top: 3px solid #000;
    list-style: none;
    padding: 0;
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
    list-style: none;
}

.sub-menu a::before {
    display: none;
}

.sub-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Aktif menü öğesi için stil */
.nav-links .uk-active > a {
    color: #000;
}

.nav-links .uk-active > a::before {
    transform: scaleX(1);
}

/* Menü hover efekti için glow */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0);
    }
}

.nav-links li:hover > a {
    animation: glow 1.5s infinite;
}

.logo {
    flex: 0 0 120px;
    text-align: center;
    margin: 0 1rem;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Bölümü */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(220, 40, 30, 0.8), rgba(220, 40, 30, 0.8)), url('../images/hero/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    margin: 0 5%;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.hero-text {
    flex: 1;
    text-align: center;
    padding-right: 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.hero-content h2 span {
    display: inline-block;
    /* animation: float 3s ease-in-out infinite; */
}

/* .hero-content h2 span:nth-child(1) { animation-delay: 0s; }
.hero-content h2 span:nth-child(2) { animation-delay: 0.2s; }
.hero-content h2 span:nth-child(3) { animation-delay: 0.4s; }
.hero-content h2 span:nth-child(4) { animation-delay: 0.6s; }
.hero-content h2 span:nth-child(5) { animation-delay: 0.8s; }
.hero-content h2 span:nth-child(6) { animation-delay: 1s; } */

/* @keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
} */

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #DC281E;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #fff;
    text-align: center;
    margin: 0 auto;
}

.cta-button:hover {
    background-color: #fff;
    color: #DC281E;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #fff;
}

/* Über Uns Sayfası Stilleri */
.page-header {
    height: 50vh;
    background: linear-gradient(rgba(220, 40, 30, 0.8), rgba(220, 40, 30, 0.8)), url('../images/career/header-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin: 0 5%;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.5rem;
}

.career-section {
    padding: 5rem 0;
    margin: 0 5%;
}

.career-section:nth-child(even) {
    background-color: #f9f9f9;
}

.career-content {
    max-width: 1200px;
    margin: 0 auto;
}

.career-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.job-listings, .training-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card, .training-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.job-card:hover, .training-card:hover {
    transform: translateY(-10px);
}

.job-card h3, .training-card h3 {
    color: #DC281E;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.job-card p, .training-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.job-card ul, .training-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.job-card ul li, .training-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.job-card ul li:before, .training-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #DC281E;
}

.apply-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #DC281E;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #d23c0e;
    transform: translateY(-2px);
}

.about-detail {
    padding: 5rem 0;
    margin: 0 5%;
}

.about-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values {
    padding: 5rem 0;
    background-color: #f9f9f9;
    margin: 0 5%;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    color: #DC281E;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team {
    padding: 5rem 0;
    margin: 0 5%;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

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

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

.certificates {
    padding: 5rem 0;
    background-color: #f9f9f9;
    margin: 0 5%;
}

.certificates h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.certificate {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certificate img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.certificate h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.certificate p {
    color: #666;
}

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

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .page-header-content p {
        font-size: 1.2rem;
    }

    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-animation {
        width: 100%;
    }
}

/* Über uns Bölümü */
.about {
    padding: 5rem 0;
    background: #fff;
    margin: 0 5%;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.about-animation {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.about-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #DC281E;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.about-btn:hover {
    background: #d23c0e;
    transform: translateY(-2px);
}

.stats {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.stat-item .counter {
    font-size: 3rem;
    font-weight: bold;
    color: #DC281E;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-animation {
        margin-bottom: 2rem;
        min-width: 300px;
    }
    
    .about-animation lottie-player {
        width: 300px !important;
        height: 300px !important;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

/* Hizmetler Bölümü */
.services {
    padding: 5rem 0;
    background-color: #fff;
    margin: 0 5%;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

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

.service-card {
    background: #DC281E;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: scale(1.05);
}

.mehr-btn {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mehr-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .mehr-btn {
    transform: translateY(-3px);
}

.service-card:hover .mehr-btn::before {
    left: 100%;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-card {
        min-height: 250px;
    }
}

/* Projekte Bölümü */
.projects {
    padding: 5rem 0;
    margin: 0 5%;
}

.projects h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(220, 40, 30, 0.8), rgba(220, 40, 30, 0.8));
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 2;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

/* Konum ve İletişim Bölümü */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    margin: 0 5%;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.contact-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact-info-wrapper, .contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-info-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: #DC281E;
    font-size: 1.2rem;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(233, 78, 27, 0.05);
    transform: translateX(10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #DC281E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon-box {
    transform: rotate(10deg);
}

.info-box h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-box p {
    color: #666;
    margin: 0;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.action-button, .submit-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #DC281E;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 50px;
}

.action-button:hover, .submit-button:hover {
    background: #d23c0e;
    transform: translateY(-3px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #DC281E;
    font-size: 1.1rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #DC281E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 78, 27, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23E94E1B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    padding: 0.5rem;
}

/* Dosya Yükleme Stili */
.form-group input[type="file"] {
    display: none;
}

.form-group label[for="cv"] {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    color: #666;
}

.form-group label[for="cv"]:hover {
    background-color: #e9ecef;
    border-color: #DC281E;
}

.form-group label[for="cv"]::before {
    content: '\f0c6';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #DC281E;
}

/* Submit Button Stili */
.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #DC281E;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background-color: #d23c0e;
    transform: translateY(-2px);
}

.submit-button::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Form Header Stili */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        height: auto;
    }
}

@media (max-width: 576px) {
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .icon-box {
        margin: 0 auto;
    }
}

/* Footer */
footer {
    background-color: #DC281E;
    color: #fff;
    padding: 1rem 0;
    margin: 0 5%;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #DC281E;
}

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

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .nav-left, .nav-right {
        display: none;
        width: 100%;
        order: 3;
    }

    .nav-left.active, .nav-right.active {
        display: block;
        position: static;
        background: #fff;
        padding: 1rem;
        box-shadow: none;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

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

    .nav-left .nav-links,
    .nav-right .nav-links {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

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

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

    .nav-links a {
        padding: 0.8rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
    }

    .nav-links .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1rem;
        width: 100%;
        background: rgba(0,0,0,0.02);
        list-style: none;
    }

    .nav-links li.active > .sub-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
        padding: 0.5rem;
        font-size: 1.5rem;
        color: #DC281E;
    }

    .logo {
        order: 1;
        flex: 0 0 100px;
    }

    .menu-item-has-children > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 5px;
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .menu-item-has-children.active > a::after {
        transform: rotate(180deg);
    }

    .sub-menu {
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .sub-menu a {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        max-height: 400px;
    }
}

/* Konum Bölümü */
.location-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

.location-info-card, .contact-hours-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.location-info-card:hover, .contact-hours-card:hover {
    transform: translateY(-5px);
}

.location-header, .hours-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #DC281E;
}

.location-header i, .hours-header i {
    font-size: 2rem;
}

.location-header h3, .hours-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.location-details {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.info-row:hover {
    background-color: rgba(233, 78, 27, 0.05);
}

.info-row i {
    color: #DC281E;
    font-size: 1.2rem;
    width: 20px;
}

.info-row p {
    color: #666;
    margin: 0;
}

.location-actions {
    margin-top: 2rem;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #DC281E;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.direction-btn:hover {
    background-color: #d23c0e;
    transform: translateY(-2px);
}

.hours-details {
    margin-bottom: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

.hours-row:hover {
    background-color: rgba(233, 78, 27, 0.05);
}

.hours-row .day {
    color: #2c3e50;
    font-weight: 500;
}

.hours-row .time {
    color: #DC281E;
    font-weight: 700;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fff3ef;
    border-radius: 8px;
    border: 1px dashed #DC281E;
}

.emergency-contact i {
    color: #DC281E;
    font-size: 1.5rem;
}

.emergency-contact p {
    color: #DC281E;
    margin: 0;
    font-weight: 500;
}

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

/* Leistungen Sayfası Stilleri */
.service-detail {
    padding: 5rem 0;
    margin: 0 5%;
}

.service-detail:nth-child(even) {
    background-color: #f9f9f9;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-text ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

.service-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #DC281E;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

    .service-text h2 {
        font-size: 2rem;
    }
}

/* Ana içerik için padding ekle */
main {
    padding-top: 80px; /* Navbar yüksekliği kadar üstten boşluk */
}

/* Harita Stilleri */
.map-container {
    width: 100%;
    height: 500px;
    margin-top: 1rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(233, 78, 27, 0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.map-container:hover img {
    transform: scale(1.02);
}

/* Konum İşareti Stili */
.location-marker {
    position: absolute;
    top: 35%;
    left: 60%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.location-marker i {
    font-size: 2.5rem;
    color: #DC281E;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.location-marker:hover i {
    transform: scale(1.2);
}

/* Popup Menü Stili */
.location-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 20;
    opacity: 0;
    transition: all 0.3s ease;
    width: 350px;
    overflow: hidden;
}

.location-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup-content {
    position: relative;
}

.popup-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-content h3 {
    color: #DC281E;
    margin: 1rem;
    font-size: 1.5rem;
}

.contact-info {
    padding: 0 1rem 1rem 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #DC281E;
    width: 20px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #DC281E;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 21;
}

.close-popup:hover {
    background: #DC281E;
    color: white;
    transform: rotate(90deg);
}

.germany-map {
    width: 100%;
    height: 600px;
    object-fit: contain;
    position: relative;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 78, 27, 0.1);
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Projects Section */
.projects-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.project-image {
    height: 200px;
    overflow: hidden;
}

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

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: #DC281E;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #666;
    margin-bottom: 1rem;
}

.view-project {
    background: #DC281E;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: #d23c0e;
    transform: translateY(-2px);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gallery-modal.active {
    display: flex;
}

.gallery-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    color: #DC281E;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-gallery:hover {
    background: #DC281E;
    color: white;
    transform: rotate(90deg);
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 70vh;
}

.gallery-images {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.gallery-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.gallery-images img.active {
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #DC281E;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.gallery-nav:hover {
    background: #DC281E;
    color: white;
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-info {
    padding: 1.5rem;
    background: white;
}

.gallery-title {
    color: #DC281E;
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: #666;
}

