/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #e63946;
    transition: all 0.3s ease;
}

a:hover {
    color: #952a33;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Genel Sınıflar */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #e63946;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #e63946;
}

.btn-light {
    background-color: #fff;
    color: #e63946;
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: transparent;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #e63946;
    border: 2px solid #e63946;
}

.btn-outline:hover {
    background-color: #e63946;
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e63946;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

/* Header Stili */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.sticky {
    padding: 10px 0;
    background-color: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 200px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 101;
}

.logo img {
    width: 100%;
    display: block;
}

.main-nav .menu {
    display: flex;
}

.main-nav .menu li {
    position: relative;
    margin-left: 20px;
}

.main-nav .menu li a {
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.main-nav .menu li a:hover,
.main-nav .menu li a.active {
    color: #e63946;
}

.main-nav .menu li.has-dropdown > a {
    display: flex;
    align-items: center;
}

.main-nav .menu li.has-dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
}

.main-nav .menu li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.main-nav .menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .menu li .dropdown li {
    margin: 0;
}

.main-nav .menu li .dropdown li a {
    padding: 8px 20px;
    font-weight: 400;
    color: #333;
    border-left: 3px solid transparent;
}

.main-nav .menu li .dropdown li a:hover {
    background-color: #f8f9fa;
    color: #e63946;
    border-left: 3px solid #e63946;
}

/* İletişim Sidebar Düğmesi */
.contact-sidebar-toggle button {
    display: flex;
    align-items: center;
    background-color: #e63946;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-sidebar-toggle button:hover {
    background-color: #952a33;
}

.contact-sidebar-toggle button span {
    margin-right: 10px;
}

/* Mobil Menü Düğmesi */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle button {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 200;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
    max-width: 150px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-weight: 500;
}

.mobile-menu-list li a:hover {
    background-color: #f8f9fa;
    color: #e63946;
}

.mobile-dropdown > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown > a i {
    transition: all 0.3s ease;
}

.mobile-dropdown.active > a i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background-color: #f8f9fa;
}

.mobile-submenu li a {
    padding-left: 30px !important;
    font-weight: 400 !important;
}

/* İletişim Sidebar */
.contact-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #fff;
    z-index: 200;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow-y: auto;
}

.contact-sidebar.active {
    right: 0;
}

.contact-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #e63946;
    color: #fff;
}

.contact-sidebar-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.contact-sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.contact-sidebar-content {
    padding: 30px 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: #e63946;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

.contact-form h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ana İçerik */
.main-content {
    margin-top: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

/* Tam Ekran Slider Stili - Modernize Edildi */
.fullscreen-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.fullscreen-slider .slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.fullscreen-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1;
    transform: scale(1.1);
}

.fullscreen-slider .slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.fullscreen-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 15s linear infinite;
    filter: brightness(0.85);
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.fullscreen-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 90%;
    max-width: 1000px;
}

.fullscreen-slider .slide-content h2 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    line-height: 1.2;
}

.fullscreen-slider .slide-content p {
    font-size: 26px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fullscreen-slider .slide-content .btn {
    padding: 14px 34px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    font-weight: 600;
    background-color: rgba(230, 126, 34, 0.9);
    border: 2px solid rgba(230, 126, 34, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.fullscreen-slider .slide-content .btn:hover {
    background-color: transparent;
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fullscreen-slider .slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.fullscreen-slider .slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.fullscreen-slider .prev-slide, 
.fullscreen-slider .next-slide {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fullscreen-slider .prev-slide:hover, 
.fullscreen-slider .next-slide:hover {
    background-color: #e67e22;
    transform: scale(1.15);
    border-color: transparent;
}

.fullscreen-slider .prev-slide i,
.fullscreen-slider .next-slide i {
    transition: transform 0.3s ease;
}

.fullscreen-slider .prev-slide:hover i {
    transform: translateX(-5px);
}

.fullscreen-slider .next-slide:hover i {
    transform: translateX(5px);
}

/* Slider indikatörleri - Modernize Edildi */
.fullscreen-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.fullscreen-indicators .indicator {
    width: 40px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.fullscreen-indicators .indicator:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #e67e22;
    transition: width 0.4s ease;
}

.fullscreen-indicators .indicator.active {
    background-color: rgba(255, 255, 255, 0.6);
}

.fullscreen-indicators .indicator.active:after {
    width: 100%;
    animation: fillProgress 6s linear forwards;
}

@keyframes fillProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Eski Hero Slider */
.hero-slider-inner {
    position: relative;
    height: 100%;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.prev-slide, .next-slide {
    position: absolute;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Hizmetler Bölümü */
.services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #e6394614;
    color: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #e63946;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #952a33;
}

/* Projeler Bölümü */
.projects {
    padding: 100px 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.project-box:hover img {
    transform: scale(1.1);
}

.project-box:hover .project-info {
    transform: translateY(-10px);
}

.project-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Hakkımızda Kısa Bölüm */
.about-short {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-short::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(230, 57, 70, 0.04);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-top: 4px solid #e63946;
    border-left: 4px solid #e63946;
    opacity: 0.6;
    z-index: -1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e63946;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 60%;
    border-right: 4px solid #e63946;
    border-bottom: 4px solid #e63946;
    opacity: 0.3;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text .btn {
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-text .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.about-text .btn::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.about-text .btn:hover::after {
    transform: translateX(5px);
}

/* Mobil görünüm ayarları */
@media screen and (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 20px;
        max-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .about-short {
        padding: 70px 0;
    }
    
    .about-short::before {
        width: 50%;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-image {
        max-height: 350px;
    }
}

@media screen and (max-width: 576px) {
    .about-short {
        padding: 60px 0;
    }
    
    .about-short::before {
        display: none;
    }
    
    .about-text::before {
        width: 40px;
        height: 40px;
        top: -10px;
        left: -10px;
    }
    
    .about-image::after {
        width: 50%;
        height: 40%;
        bottom: -10px;
        right: -10px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text h2::after {
        width: 40px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-image {
        max-height: 250px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .about-text .btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* İletişim Çağrısı */
.contact-cta {
    padding: 80px 0;
    background-color: #e63946;
    color: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.footer-widget p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e63946;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #e63946;
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #e63946;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info li i {
    margin-right: 15px;
    color: #e63946;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom-right a {
    color: #ccc;
    margin-left: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #e63946;
}

.footer-bottom-right a:last-child {
    color: #e67e22;
    font-weight: 500;
}

.footer-bottom-right a:last-child:hover {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    
    .footer-bottom-right a {
        margin: 5px 10px;
    }
}

@media screen and (max-width: 576px) {
    .footer-bottom-right {
        flex-direction: row;
    }
    
    .footer-bottom-right a {
        margin: 5px 8px;
        font-size: 13px;
    }
}

/* Scroll To Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #952a33;
}

/* İletişim Sayfası */
.contact-page {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.contact-page-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-map {
    margin-top: 50px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Projeler Sayfası */
.projects-page {
    padding: 100px 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.filter-btn:hover, .filter-btn.active {
    color: #e63946;
}

/* Hakkımızda Sayfası */
.about-page {
    padding: 100px 0;
}

.about-page-section {
    margin-bottom: 80px;
}

.about-page-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-page-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #e63946;
}

/* Responsive Tasarım */
@media screen and (max-width: 1200px) {
    .hero-slider {
        height: 600px;
    }
    
    .fullscreen-slider .slide-content h2 {
        font-size: 54px;
    }
    
    .fullscreen-slider .slide-content p {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .fullscreen-slider .slide-content h2 {
        font-size: 44px;
    }
    
    .fullscreen-slider .slide-content p {
        font-size: 18px;
    }
    
    .fullscreen-slider .prev-slide, 
    .fullscreen-slider .next-slide {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .fullscreen-indicators {
        bottom: 100px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 30px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .fullscreen-slider .slide-content h2 {
        font-size: 36px;
    }
    
    .fullscreen-slider .slide-content p {
        font-size: 16px;
    }
    
    .fullscreen-slider .prev-slide, 
    .fullscreen-slider .next-slide {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .fullscreen-slider .slider-navigation {
        padding: 0 15px;
    }
    
    .fullscreen-indicators {
        bottom: 80px;
    }
    
    .fullscreen-indicators .indicator {
        width: 12px;
        height: 12px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom-right a {
        margin: 5px 10px;
    }
    
    .contact-sidebar {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 26px;
    }
    
    .fullscreen-slider {
        height: 100vh;
    }
    
    .fullscreen-slider .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .fullscreen-slider .slide-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .fullscreen-slider .slider-navigation {
        padding: 0 10px;
    }
    
    .fullscreen-slider .prev-slide, 
    .fullscreen-slider .next-slide {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .fullscreen-indicators {
        bottom: 70px;
        gap: 10px;
    }
    
    .fullscreen-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services {
        padding: 70px 0;
    }
    
    .projects {
        padding: 70px 0;
    }
    
    .about-short {
        padding: 70px 0;
    }
    
    .contact-cta {
        padding: 70px 0;
    }
    
    .contact-cta h2 {
        font-size: 28px;
    }
    
    .footer-top {
        padding: 70px 0;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    position: relative;
    width: 50px;
    height: 50px;
}

.circular {
    animation: rotate 2s linear infinite;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.path {
    stroke: #e63946;
    stroke-dasharray: 89, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

/* Rakamlarla Biz */
.stats-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: -50px;
}

.stat-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.stat-content p {
    color: #666;
    font-size: 18px;
}

/* Neden Biz */
.why-us {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.why-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-left {
    text-align: left;
}

.text-left h2:after {
    left: 0;
    transform: none;
}

.why-us-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
}

.why-us-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge span {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin-top: 5px;
}

/* Referanslar Bölümü */
.partners {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: rgba(230, 57, 70, 0.03);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.partners::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: rgba(230, 57, 70, 0.03);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 1;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners-slider {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-logo {
    flex: 0 0 calc(20% - 30px);
    min-width: 200px;
    height: 140px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #e63946, #e67e22);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(230, 57, 70, 0.05), transparent);
    transition: height 0.4s ease;
    z-index: -1;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo:hover::before {
    transform: scaleX(1);
}

.partner-logo:hover::after {
    height: 100%;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1200px) {
    .partner-logo {
        flex: 0 0 calc(25% - 30px);
    }
}

@media screen and (max-width: 992px) {
    .partner-logo {
        flex: 0 0 calc(33.33% - 30px);
        height: 120px;
    }
}

@media screen and (max-width: 768px) {
    .partners {
        padding: 80px 0;
    }
    
    .partners-slider {
        gap: 20px;
    }
    
    .partner-logo {
        flex: 0 0 calc(50% - 20px);
        min-width: 160px;
        height: 110px;
    }
    
    .partner-logo img {
        max-height: 70px;
    }
}

@media screen and (max-width: 576px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners-slider {
        gap: 15px;
    }
    
    .partner-logo {
        flex: 0 0 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Mobil Menü Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.mobile-menu-footer .social-links {
    justify-content: center;
    margin-bottom: 10px;
}

.mobile-menu-footer p {
    color: #666;
    font-size: 14px;
}

/* Başarılı Form Mesajı */
.form-success {
    background-color: #28a745;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-success.show {
    opacity: 1;
    transform: translateY(0);
}

.form-success i {
    margin-right: 10px;
}

/* Slider göstergeleri */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Responsive Tasarım Eklemeleri */
@media screen and (max-width: 992px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-logo {
        flex: 0 0 33.33%;
    }
}

@media screen and (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        flex: 0 0 100%;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        left: 20px;
    }
    
    .experience-badge span {
        font-size: 30px;
    }
    
    .experience-badge p {
        font-size: 12px;
    }
}

.partners .section-title {
    position: relative;
}

.partners .section-title h2 {
    font-size: 40px;
    background: linear-gradient(45deg, #252525, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.partners .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #e63946, #e67e22);
    border-radius: 2px;
}

.partners .section-title p {
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .partners .section-title h2 {
        font-size: 32px;
    }
    
    .partners .section-title h2:after {
        width: 80px;
        height: 3px;
    }
}

@media screen and (max-width: 576px) {
    .partners .section-title h2 {
        font-size: 28px;
    }
    
    .partners .section-title h2:after {
        width: 60px;
    }
}

.partners-decoration {
    margin-top: 60px;
    text-align: center;
}

.partners-decoration .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    background: transparent;
    color: #333;
    border: 2px solid #e63946;
    transition: all 0.4s ease;
}

.partners-decoration .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #e63946, #e67e22);
    transition: all 0.4s ease;
    z-index: -1;
}

.partners-decoration .btn:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
    transform: translateY(-5px);
}

.partners-decoration .btn:hover:before {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .partners-decoration {
        margin-top: 40px;
    }
    
    .partners-decoration .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
} 