/* style.css */
:root {
    --primary-color: #e60000;
    /* Vibrant Red */
    --primary-hover: #b30000;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --light-bg: #ffffff;
    --gray-bg: #f4f4f4;
    --text-dark: #333333;
    --text-light: #f9f9f9;
    --text-gray: #aaaaaa;
    --transition: all 0.3s ease;
}

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

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.text-white {
    color: var(--text-light) !important;
}

/* Header */
.header {
    background-color: rgba(230, 0, 0, 0.85);
    /* Kırmızı Glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari desteği */
    color: var(--text-light);
    position: fixed;
    width: calc(100% - 40px);
    /* Kenarlardan boşluk bıraktık */
    left: 20px;
    top: 15px;
    /* Logo ve tavan boşluğu */
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    /* Köşeleri yuvarladık */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Kenar çizgisi biraz daha belirgin */
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 10px;
}

.logo-img-link {
    position: relative;
    width: 140px;
    height: 70px;
    /* Header ile tam uyumlu */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.main-logo {
    height: 135px;
    /* 10px daha büyütüldü */
    width: auto;
    position: absolute;
    top: 60%;
    /* Bir tık daha aşağı kaydırıldı (Buckle etkisi) */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Kutuyu sildik, sadece logonun kendisi taşıyor */
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.9));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img-link:hover .main-logo {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Logo stilini yukarıda toplu düzenledik */

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.brand-text span {
    color: #fff;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: #fff;
    /* Rengi koru ama beyaz olarak netleştir */
}

.nav-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    margin-left: 5px;
}

.nav-socials a {
    font-size: 1.35rem;
    /* İkonları biraz daha belirgin yaptık */
    transition: var(--transition);
}

.nav-socials a:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Social Media Global Brand Colors */
.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.fa-youtube {
    color: #FF0000;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    color: #fff;
    padding-top: 90px;
    /* Offset for header (matching height) */
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    /* Sola yanaştır */
    text-align: left;
    /* Metni sola hizala */
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 90px;
    /* Offset for header */
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Karartma tamamen kaldırıldı */
    z-index: 1;
    pointer-events: none;
    /* Tıklamaları geçsin diye eklendi */
}

.hero-content-slide {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 5%;
    /* Ekranın en solunda değil, %5 içeride */
    margin-right: auto;
    /* Sağ tarafı boş bırak */
    padding-left: 0;
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    /* Daha belirgin gölge */
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light-red {
    background-color: rgba(230, 0, 0, 0.6);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light-red:hover {
    background-color: rgba(230, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-light-black {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-light-black:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    /* Yan yana ama aralarında boşluk var */
    justify-content: flex-start;
}

.hero-buttons.fixed-bottom-left {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 100;
    /* Artırıldı, slider-container z-index: 0 ve overlay z-index: 1 */
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .hero-buttons.fixed-bottom-left {
        bottom: 20px;
        left: 20px;
        flex-direction: row;
        /* Yan yana diz */
        gap: 10px;
        flex-wrap: wrap;
        /* Sığmazsa alt satıra geçsin */
    }

    .hero-buttons.fixed-bottom-left .btn {
        padding: 8px 15px;
        /* Mobilde dolguyu küçült */
        font-size: 0.85rem;
        /* Mobilde yazı fontunu küçült */
    }
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Services */
.services {
    background-color: var(--gray-bg);
}

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

.service-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-gray);
    flex-grow: 1;
}

/* Vehicle Grid (About Page) */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vehicle-card {
    background-color: var(--light-bg);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.1);
    border-color: rgba(230, 0, 0, 0.2);
}

.vehicle-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.vehicle-card:hover i {
    transform: scale(1.1);
}

.vehicle-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.vehicle-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Common Media Queries */
@media (max-width: 900px) {}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Portfolio */
.portfolio {
    background-color: #fff;
    padding: 50px 0;
    /* Boşlukları daralttık */
}

.portfolio .section-title {
    margin-bottom: 30px;
    /* Başlık altı boşluğu yarıya indirdik */
}

.portfolio-slider {
    /* overflow-x: scroll vs yapmamıza gerek yok js & css hallediyor. Sadece taşanları gizleyelim. */
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.portfolio-track {
    /* 
      Çocuk elemanların toplam genişliği ne kadarsa o kadar olmak için 
      flex veya inline-flex veya width: max-content gibi bir yapı kurarız.
    */
    display: flex;
    width: max-content;
    will-change: transform;
}

.portfolio-track.is-animating {
    /* 
      15 fotoğraf + klonlarına yetecek bir süre (ör. 60s)
      linear ile ivmesiz sabit hızda hareket 
    */
    animation: scrollPortfolio 60s linear infinite;
}

.portfolio-slider:hover .portfolio-track {
    animation-play-state: paused;
}

@keyframes scrollPortfolio {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        /* JS tarafından hesaplanan width'e göre, 
           tam 1 klon seti (yani yarısı) kaydığında başa saracak... 
           AMA JS buna karar vermeli, biz default %100 veya -50% diyebiliriz. 
           Veya en basiti translateX(-100%); deyip sonsuzluğa bırakırız. 
        */
        transform: translate3d(-50%, 0, 0);
    }
}

.portfolio-item {
    flex: 0 0 320px;
    height: 320px;
    /* Sabit bir yükseklik verildi veya aspect-ratio kullanılabilir */
    margin-right: 30px;
    /* Her elemanın sağına boşluk */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Düzenlendi: Beyaz zemine uygun */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Düzenlendi: Beyaz zemine uygun yumuşak gölge */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    /* 3D Yükselme etkisi */
    box-shadow: 0 20px 50px rgba(230, 0, 0, 0.3);
    border-color: rgba(230, 0, 0, 0.5);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 25px;
    background: rgba(230, 0, 0, 0.85);
    /* Kırmızı Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-item:hover .portfolio-info {
    bottom: 0;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
    font-weight: 400;
}

/* Portfolio Button Container */
.portfolio-btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Contact Section - Nizamı (Orderly) Style */
.contact {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.contact-fullwidth {
    width: 100%;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Telefon Kartı Hover Efekti (İçi Kırmızı Dolgulu) */
.phone-card:hover .icon-box {
    background: var(--primary-color);
}

.phone-card:hover .icon-box i {
    color: #fff;
}

/* WhatsApp Kartı Normal ve Hover Efekti (İçi Yeşil Dolgulu) */
.whatsapp-card .icon-box i {
    color: #25d366;
    /* WhatsApp Green Normalde */
}

.whatsapp-card:hover .icon-box {
    background: #25d366;
}

.whatsapp-card:hover .icon-box i {
    color: #fff;
}

.whatsapp-card:hover {
    border-color: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
    /* Gölge daraltıldı */
}

/* Email Kartı Normal ve Hover Efekti (İçi Mavi Dolgulu) */
.email-card .icon-box i {
    color: #007bff;
    /* Mavi İkon */
}

.email-card:hover .icon-box {
    background: #007bff;
}

.email-card:hover .icon-box i {
    color: #fff;
}

.email-card:hover {
    border-color: #007bff;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

/* Harita Kartı Özel */
.map-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex: 1;
    overflow: hidden;
    height: 350px;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-footer {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    color: #fff;
}

.card-footer i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card-footer p {
    font-size: 0.95rem;
    margin: 0;
}

/* Bilgi Kartları Özel - Kompakt Görünüm */
.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Kartları ortala ve aralarındaki boşluğu kendi gap'ine bırak */
    gap: 15px;
    /* Kartlar arası boşluk */
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Gap daraltıldı */
}

.icon-box {
    width: 50px;
    /* 60'tan 50'ye düşürüldü */
    height: 50px;
    background: rgba(230, 0, 0, 0.05);
    /* Eski şeffaf kırmızımsı/gri zemin rengi */
    border-radius: 12px;
    /* Radius küçüldü */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 1.2rem;
    /* İkonlar küçültüldü */
    color: var(--primary-color);
}

.info-content label {
    display: block;
    font-size: 0.75rem;
    /* Yazı küçültüldü */
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    /* Boşluk azaltıldı */
    font-weight: 700;
}

.info-content p {
    font-size: 1rem;
    /* Yazı küçültüldü */
    font-weight: 600;
    margin: 0;
    color: var(--dark-bg);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-wrapper {
        height: 250px;
    }
}

/* Portfolio Page Specifics */
.page-header {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Video Gallery */
.video-gallery {
    padding: 80px 0 20px 0;
    background: var(--dark-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 20px 0 80px 0;
    background: var(--darker-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.grid-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.grid-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

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

.grid-info {
    padding: 20px;
}

.grid-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.grid-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.working-hours-line i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Responsive/* Mobile App UI Transformation */

/* Drawer Menu Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #111;
    z-index: 2001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.close-drawer {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.drawer-list {
    list-style: none;
    flex-grow: 1;
}

.drawer-list li {
    margin-bottom: 25px;
}

.drawer-list a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.drawer-list a i {
    width: 25px;
    color: var(--primary-color);
}

.drawer-list a:hover {
    color: var(--primary-color);
}

.drawer-footer {
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    gap: 10px;
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    flex: 1;
}

.drawer-btn.whatsapp-btn {
    background: #25d366;
}

.drawer-btn.whatsapp-btn:hover {
    background: #128c7e;
}

.drawer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.drawer-socials a {
    font-size: 2.2rem;
    /* Daha belirgin boyut */
    transition: var(--transition);
}

.drawer-socials a:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Global Footer */
.main-footer {
    background-color: transparent;
    /* Arka plan kaldırıldı */
    color: var(--dark-bg);
    /* Koyu metin eklendi */
    text-align: center;
    padding: 30px 20px 20px;
    border-top: none;
    /* Çizgi kaldırıldı */
}

.footer-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    /* 20px'ten düşürüldü */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    /* 30px'ten düşürüldü */
}

.footer-socials a {
    font-size: calc(2rem + 5px);
    color: var(--dark-bg);
    /* İkonlar da koyu renk oldu */
    transition: var(--transition);
}

.footer-socials a:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.copyright {
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    color: var(--text-gray);
    letter-spacing: 1px !important;
    margin-bottom: 0 !important;
    text-transform: none !important;
}


/* Desktop Floating WhatsApp Button */
.desktop-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.desktop-whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Sticky Footer Default State */
.mobile-footer {
    display: none;
}

/* Mobile Optimizations */
@media (max-width: 768px) {

    .header {
        position: fixed !important;
        top: 10px;
        width: calc(100% - 20px);
        left: 10px;
        border-radius: 15px;
        z-index: 1001 !important;
    }

    /* Restore Mobile App Look */
    .header-flex .nav,
    .nav {
        display: none !important;
    }

    .hamburger {
        display: block !important;
        margin-left: 15px;
    }

    /* Container & Brand Fixes */
    .container {
        padding: 0 15px;
    }

    .header-brand {
        gap: 10px;
        flex: 1;
        align-items: center;
    }

    .logo-img-link {
        width: 100px;
        height: 60px;
        /* Mobilde daha ince */
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .brand-text {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
        display: flex;
        gap: 5px;
        color: #fff;
    }

    .brand-text span {
        display: inline;
        font-size: 0.95rem;
        color: #fff;
    }

    .main-logo {
        height: 110px;
        /* Mobilde de header'dan taşan kemer tokası formatı */
    }

    .hero {
        padding-top: 140px;
        /* Header aşağı indiği için burayı da açtık */
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }



    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item {
        flex: 0 0 260px;
        height: 200px;
        margin-right: 15px;
        /* Adjust gap for mobile */
    }

    /* Mobilde Çalışmalarımız Şeridini Daha Hızlı Akıt */
    .portfolio-track.is-animating {
        animation-duration: 35s;
        /* 60 saniyeden 35 saniyeye düşürüldü */
    }

    /* Desktop Whatsapp butonunu mobilde gizle */
    .desktop-whatsapp-btn {
        display: none !important;
    }

    /* Bizi Takip Edin Mobil Boşluk Düzeltmeleri */
    .main-footer {
        padding: 20px 15px 15px;
        /* Mobilde iyice kompakt hale getirdik */
    }

    .footer-content p {
        margin-bottom: 10px;
        /* Başlık ile ikonlar arası boşluğu kıstık */
    }

    .footer-socials {
        margin-bottom: 10px;
        /* İkonlar ile telif hakkı arası boşluğu kıstık */
    }

    body {
        padding-bottom: 0px;
        /* Sabit footer iptal edildiği için alttaki boşluğu sildik */
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    section {
        padding: 60px 0;
    }

    /* About Page Mobile Footer Styling */
    .mobile-footer {
        display: flex;
        justify-content: center;
        /* Center horizontally side by side */
        align-items: center;
        flex-wrap: wrap;
        /* Ensure safe wrapping on tiny screens */
        gap: 15px;
        /* Spaces out working hours and buttons */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #111;
        padding: 12px 10px;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .working-hours {
        font-size: 0.8rem;
        color: var(--text-gray);
        line-height: 1.3;
        text-align: right;
    }

    .action-buttons {
        display: flex;
        gap: 10px;
    }

    .btn-action {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        color: #fff !important;
        text-transform: uppercase;
    }

    .phone-action {
        background: var(--primary-color);
    }

    .whatsapp-action {
        background: #25d366;
    }
}

/* Global Comprehensive Footer */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-map-link {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-map-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.footer-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.footer-map-link:hover .map-overlay {
    background: var(--primary-color);
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo img {
    height: 80px;
    /* Increased from 60px by another 20px */
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1.35rem;
    /* ~21px, which is ~5px larger than base 16px */
    width: 25px;
    /* ensure alignment */
    text-align: center;
}

.contact-list i.fa-whatsapp {
    color: #25d366;
    font-size: 1.65rem;
    /* Additional ~5px explicitly for WhatsApp icon */
}

.contact-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-list a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-list li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .site-footer {
        padding: 50px 0 20px;
    }
}