/* #csss #lookk #designn */
/**
 * Akıllı Yazılım Mimarisi (AYM) - Tasarım Felsefesi: KASITLI MİNİMALİZM
 * Anti-Generic, Benzersizlik, Minimalizm
 */

:root {
    --primary: #e67e22;
    --secondary: #d35400;
    --dark: #0d0d0d;
    --dark-surface: #1a1a1a;
    --text: #ffffff;
    --text-muted: #888888;
    --transition: all 0.26s cubic-bezier(0.4, 0, 0.2, 1); /* Optimized transition time (1/3 shorter) */
    --glass: rgba(13, 13, 13, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --aym-bg: radial-gradient(circle at 2px 2px, rgba(230,126,34,0.05) 1px, transparent 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--dark);
    background-image: 
        var(--aym-bg),
        linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
        url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&q=80&w=2000'); 
    background-size: 40px 40px, cover, cover;
    background-attachment: fixed, scroll, fixed;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: auto !important; /* Disable smooth scroll on load to avoid jump */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* #loaderr Loader Redesign - Görev 1 */
#loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.2s cubic-bezier(0.9, 0, 0.1, 1);
}

#loader.fade-out {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(10px);
}

#loader .loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 250px !important; /* Made bigger */
    margin-bottom: 40px;
    filter: drop-shadow(0 0 30px rgba(230, 126, 34, 0.5));
    animation: loaderPulse 2s infinite ease-in-out;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(230, 126, 34, 0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 50px rgba(230, 126, 34, 0.8)); }
}

.loader-content .progress-bar {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-content .progress {
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    width: 100%;
    animation: loaderProgress 3s infinite linear;
}

@keyframes loaderProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* #navv Navigation Adjustments - Görev 1 */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0; /* Reduced padding */
    background: transparent;
    transition: var(--transition);
}

#main-nav.scrolled {
    padding: 8px 0; /* Even smaller when scrolled */
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 40px; /* Reduced vertical padding (half of before) */
    background: rgba(13, 13, 13, 0.65);
    backdrop-filter: blur(30px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    gap: 20px;
}

.nav-logo img {
    height: 130px; /* #logoo Büyütüldü - Kullanıcı Talebi */
    margin-right: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

#app-content {
    padding-top: 180px; /* #overlap-fix INCREASED distance from menu to titles - Görev Talebi (X106) */
}

.photoshow__thumbnail {
    height: 250px !important; /* #logoo Optimize edildi - Kullanıcı Talebi (Eski: 280px) */
    width: auto !important;
    max-width: 100%;
    margin-bottom: 30px; 
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 15px 30px rgba(230,126,34,0.3));
    position: relative;
    z-index: 5;
    display: block; 
    transform-origin: center center;
}

/* Mobile Menu Styles - #mobilee */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links.active {
    display: flex !important;
}

/* Mobile Menu Panel */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 999;
        transition: right 0.3s ease;
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        right: 0;
        display: flex !important;
    }
    
    .nav-links a {
        font-size: 18px;
        text-align: center;
        padding: 15px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px; /* iOS minimum touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        background: var(--primary);
        color: white;
        transform: scale(1.05);
    }
    
    #mobile-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text);
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px; /* iOS minimum touch target */
        min-width: 44px;
    }
    
    #mobile-toggle:hover,
    #mobile-toggle:active {
        background: var(--primary);
        transform: rotate(90deg);
    }
}

.nav-links a {
    font-size: 16px; /* Increased Font Size - Görev Talebi */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-selector {
    position: relative;
    cursor: pointer;
    font-weight: 700;
}

.lang-selector::after {
    content: '\f107'; /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark-surface);
    padding: 10px;
    border: 1px solid var(--glass-border);
    display: none;
    border-radius: 8px;
    min-width: 120px;
}

.lang-selector:hover .lang-dropdown {
    display: flex;
    flex-direction: column;
}

.lang-dropdown a {
    padding: 8px 12px;
    font-size: 13px;
}

.nav-social-btn {
    font-size: 20px;
    color: var(--primary);
}

#mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#mobile-toggle:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Mobile Menu Overlay */
@media (max-width: 1024px) {
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .nav-links.active::before {
        opacity: 1;
        pointer-events: all;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center; /* #movee Ortalandı - Taşkınlığı önlemek için */
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 10; /* #stackk Canvas'ın üstünde kalması için */
}

.hero-content {
    padding: 120px 100px 60px; /* Üst ve alt boşluk dengelendi */
    max-width: 950px;
    z-index: 12;
    position: relative;
    text-align: left;
    width: 100%;
}

.hero h1 {
    font-size: 9rem; /* Much bigger title */
    line-height: 0.8;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.hero h1 span.accent {
    color: var(--primary);
    display: block;
    position: relative;
}

.hero h1 .branch {
    display: block;
    font-size: 3.5rem; /* Görev 2: Bigger font size */
    color: rgba(255,255,255,0.6); 
    font-family: 'Outfit', sans-serif;
    letter-spacing: 8px;
    margin-top: 30px; 
    text-align: right;
    width: 100%;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 50px;
    line-height: 1.8;
    /* Task 9: Gradient text */
    background: linear-gradient(90deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-video-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-video-sidebar video, .hero-video-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

/* Scroll Animation Canvas Section */
.scroll-canvas-section {
    position: relative;
    height: 300vh;
    background: #000;
}

canvas#video-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh; /* Use small viewport height for mobile browsers */
    object-fit: cover;
    transition: filter 0.8s ease;
}

/* Görev 3: Canvas parıldama efekti #gloww #canvas */
canvas#video-canvas:hover, canvas#video-canvas.focus-active {
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 30px rgba(230, 126, 34, 0.4));
}

.scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px;
}

.scroll-text {
    opacity: 0;
    transition: var(--transition);
    font-size: 4rem;
    color: #fff;
}

.scroll-text.active {
    opacity: 1;
}

/* Sections */
/* Görev 3: section.container Responsive Optimizasyonu #section-container */

/* Hakkımızda Sayfası Özel Responsive Düzenlemeleri #about-flex */
.about-flex {
    display: flex;
    gap: 80px;
    align-items: center;
    margin: 40px 0;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p:first-child {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary);
}

.about-video {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-video video,
.about-video img {
    width: 100%;
    border-radius: 15px;
}

.about-video video:first-child,
.about-video img:first-child {
    grid-column: span 1;
}

.about-video video:last-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .about-flex {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p:first-child {
        font-size: 1.4rem;
    }
    
    .about-video {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .about-flex {
        gap: 40px;
        margin: 30px 0;
    }
    
    .about-text p:first-child {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .about-video {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-video video,
    .about-video img {
        grid-column: span 1 !important;
        border-radius: 10px;
    }
    
    .about-video video:last-child {
        aspect-ratio: 16/9;
        max-height: 200px;
    }
}

/* Ultra Mobil Responsive */
@media (max-width: 480px) {
    .about-flex {
        gap: 30px;
        margin: 20px 0;
    }
    
    .about-text p:first-child {
        font-size: 1.1rem;
    }
    
    .about-video {
        gap: 10px;
    }
    
    .about-video video,
    .about-video img {
        border-radius: 8px;
    }
    
    .about-video video:last-child {
        max-height: 180px;
    }
}
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.section-title {
    margin-bottom: 80px;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    position: relative;
}

.section-title .count {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
    min-width: 60px;
}

.section-title h1 {
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.section-title h2 {
    font-size: 5rem;
    line-height: 1.1;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .section-title h1 {
        font-size: 6rem;
    }
    
    .section-title h2 {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 100px 0;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .section-title h1 {
        font-size: 4rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
    
    .section-title .count {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
        gap: 15px;
    }
    
    .section-title h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title .count {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        margin-bottom: 30px;
        gap: 10px;
        text-align: center;
        align-items: center;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title .count {
        font-size: 1rem;
        margin-bottom: 5px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: #e67e22; /* Image 2 Orange */
    color: #fff;
    border-radius: 100px; /* Fully rounded like Image 2 */
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    backdrop-filter: blur(10px);
}

.btn.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50px;
    padding: 18px 60px;
    min-width: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.4);
    color: #fff;
    font-weight: 800;
}

.btn.instagram-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(220, 39, 67, 0.6);
}

/* Services / Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    border-radius: 20px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}

.card-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-info .price {
    display: none !important; /* #price-hide */
}

/* Home Blog Section */
.home-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    background: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-item-content {
    padding: 30px;
    flex-grow: 1;
}

.blog-item-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* AI Section Refined */
.ai-strip {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(26, 26, 26, 1) 50%);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(230, 126, 34, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 50px; /* Prevents overlapping */
}

.ai-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(230, 126, 34, 0.15), transparent);
    pointer-events: none;
}

.btn.ai-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9f43 100%);
    border: none;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4), inset 0 0 20px rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateX(0deg);
}

.btn.ai-btn:hover {
    background: linear-gradient(135deg, #ff9f43 0%, var(--primary) 100%);
    transform: perspective(1000px) rotateX(10deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(230, 126, 34, 0.6);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    background: var(--dark-surface);
    overflow: hidden;
    border-radius: 10px;
}

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

.gallery-item:nth-child(4n+1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(4n+2) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(4n+3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4n+4) { grid-column: span 3; grid-row: span 1; }

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-content { padding: 0 60px; }
    .hero h1 { font-size: 6rem; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    #mobile-toggle { display: block; }
    .hero-video-sidebar { width: 100%; opacity: 0.25; }
    .hero-content { text-align: center; margin: 0 auto; padding: 120px 20px 40px; }
    .hero h1 { font-size: 3.8rem; }
    .hero p { margin: 0 auto 30px; font-size: 1.1rem; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .nav-container { padding: 10px 20px; width: 90%; }
    .nav-logo img { height: 80px; } /* #logoo Mobil için küçültüldü */
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); gap: 15px; }
    .gallery-item:nth-child(4n+1) { grid-column: span 3; grid-row: span 1; }
    .gallery-item:nth-child(4n+2) { grid-column: span 3; grid-row: span 1; }
    .gallery-item:nth-child(4n+3) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(4n+4) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 3rem; }
    .hero h1 span.accent { font-size: 3.2rem; }
    .hero h1 .branch { font-size: 1.2rem; letter-spacing: 2px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 15px; }
    .hero-actions .btn { width: 100%; min-height: 60px; font-size: 18px; }
    .product-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-title { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 40px; }
    .section-title h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2.2rem; }
    .section { padding: 80px 0; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-nav li { justify-content: center; }
    .footer-logo img { height: 120px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .scroll-text { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .map-strip { height: 400px; margin: 30px 0; }
    .map-strip h2 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.22rem; }
    .hero h1 span.accent { font-size: 2.4rem; }
    .hero h1 .branch { font-size: 1rem; letter-spacing: 2px; text-align: center; }
    .hero p { font-size: 0.95rem; margin-bottom: 25px; }
    .hero-content { padding-top: 140px; padding-bottom: 40px; }
    #app-content { padding-top: 120px; }
    .nav-container { border-radius: 20px; width: 95%; padding: 8px 15px; }
    .nav-logo img { height: 60px; } /* #logoo Ultra mobil için küçültüldü */
    .scroll-text { font-size: 1.5rem; }
    .section { padding: 60px 0; }
    .section-title h1 { font-size: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    .btn { padding: 15px 30px; font-size: 14px; }
    .product-card { height: 400px; }
    .card-info { padding: 20px; }
    .card-info h3 { font-size: 1.8rem; }
    .blog-item-content { padding: 20px; }
    .blog-item-content h3 { font-size: 1.5rem; }
    .map-strip { height: 300px; border-radius: 20px; }
    .map-strip h2 { font-size: 2rem; }
    .btn-jump-map { padding: 20px 40px; font-size: 18px; }
}

/* #foooter Footer Redesign */
#main-footer {
    padding: 120px 0 60px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Görev 2: footer-content Responsive Optimizasyonu #footer-content */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-info {
    max-width: 400px;
}

.footer-logo img {
    height: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(230, 126, 34, 0.3));
    transition: transform 0.3s ease;
}

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

.footer-info p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-info {
        grid-column: span 2;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-logo img {
        height: 150px;
    }
    
    .footer-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 120px;
    }
    
    .footer-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.footer-logo img {
    height: 200px; /* Görev 8: Double size (was 100px) */
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(230, 126, 34, 0.3));
}

.footer-nav h4 {
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.footer-nav li:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.footer-nav i {
    color: var(--primary);
    width: 20px;
}

.security-seal {
    background: rgba(230, 126, 34, 0.05);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(230, 126, 34, 0.2);
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced gap */
    margin-top: 20px;
    transition: var(--transition);
}

.security-seal:hover {
    background: rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.1);
}

.security-seal i {
    font-size: 32px; /* Task 8: Smaller icon to avoid overlap */
    color: var(--primary);
}

.security-seal div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px; /* Görev 5: Boşluğu artır #gap-inc */
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}
/* Scroll Reveal Global - Görev 1 Animation optimization */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.66s ease-out, transform 0.66s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.footer-nav a.instagram-special {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: #fff !important;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 40px; /* #copyy Genişlik artırıldı */
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 10px;
}

.footer-nav a.instagram-special::before {
    content: '\f16d'; /* Instagram Icon */
    font-family: 'Font Awesome 6 Brands';
    font-size: 18px;
}

.footer-nav a.instagram-special:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
    border-color: #fff;
}

/* Görev 4: Map Strip Animation Improvement #mapstrip */
.map-strip {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&q=80&w=2000');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67), opacity 1.2s ease;
}

.map-strip.reveal {
    transform: translateY(100px) scale(0.9);
}

.map-strip.reveal.active {
    transform: translateY(0) scale(1);
}

.map-strip-content {
    text-align: center;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 1s ease 0.3s;
}

.map-strip.reveal.active .map-strip-content {
    transform: translateY(0);
}

.map-strip h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-jump-map {
    background: var(--primary);
    padding: 25px 80px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    border-radius: 100px;
}

/* Görev 5: Larger Map Section #large-map */
.map-section-large {
    max-width: 1200px !important; /* #movee Genişlik azaltıldı */
    padding: 0 60px !important;
    margin: 0 auto !important;

}

/* Görev 1: contact-map Responsive Optimizasyonu #contact-map */
.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--dark-surface);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    background: var(--dark-surface);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
}

.map-section-large .contact-map {
    height: 600px !important;
}

@media (max-width: 768px) {
    .contact-map {
        height: 300px;
        border-radius: 15px;
        margin: 20px 0;
    }
    
    .map-section-large .contact-map {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .contact-map {
        height: 250px;
        border-radius: 10px;
        margin: 15px 0;
    }
    
    .map-section-large .contact-map {
        height: 280px !important;
    }
}

/* Görev 7: Footer text size increase #footer-font */
#main-footer .container {
    font-size: 1.2rem;
}

#main-footer .footer-bottom p {
    font-size: 1rem;
}

#main-footer .footer-nav li a {
    font-size: 1.1rem;
}

/* Gallery Popup */
#gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 20px;
    border: 2px solid var(--primary);
}

.gallery-modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ---- css/index.css Finish ---- */
