* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-blue: #00D0FF;
    --dark-blue: #003F69;
    --light-gray: #EEEEEE;
    --white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-gray);
    
}

/* Header Styles */
.header {
    height: 203px;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-left {
    width: 465px;
    height: 203px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    width: 332px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateX(5px);
}

.header-right {
    flex: 1;
    height: 203px;
    background: linear-gradient(to bottom, var(--dark-blue) 0%, var(--dark-blue) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px 0;
    position: relative;
    
}

.phone-number {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.phone-number:hover {
    color: var(--light-blue);
    transform: translateX(3px);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 55px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    position: relative;
    transition: transform 0.3s ease;
    padding-bottom: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--light-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 30px;
}

.header-actions {
    display: flex;
    gap: 5px;
}

.language-selector,
.search-btn {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.language-selector {
    border-radius: 0 0 0 22px;
}

.language-selector.active {
  border-radius: 0;
}

.search-btn {
    border-radius: 0 22px 0 0;
}

.language-selector img,
.search-btn img {
    width: 24px;
    height: 24px;
}

.search-btn img {
    transition: transform 0.3s ease;
}

.search-btn:hover img {
    transform: rotate(90deg);
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light-blue);
    border-radius: 0 0 22px 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    height: 203px;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 0 60px;
}

.search-overlay.active {
    opacity: 0.9;
    visibility: visible;
}

.search-container {
    max-width: 800px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--dark-blue);
}

.search-input {
    flex: 1;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--dark-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 700px;
}

.search-input::placeholder {
    color: #999;
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 20px;
    background-color: var(--dark-blue);
    border: none;
    border-radius: 0 25px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.search-submit img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2001;
}

.search-close:hover {
    transform: rotate(90deg);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--light-blue);
}

.mobile-phone {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.mobile-phone a:hover {
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-left {
        width: 350px;
    }
    
    .logo {
        width: 250px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .search-overlay {
        left: 350px;
    }
}

@media (max-width: 1025px) {
    .header {
        height: 100px;
    }
    
    .header-left {
        width: 40%;
        height: 100px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo {
        width: 150px;
    }
    
    .header-right {
        width: 60%;
        padding: 20px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        height: auto;
    }
    
    .phone-number {
        display: none;
    }
    
    .header-nav {
        gap: 15px;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-actions {
        display: flex;
        gap: 10px;
        background: none;
        align-items: center;
    }
    
    .language-selector,
    .search-btn {
        width: 50px;
        height: 50px;
        background: none;
        border-radius: 0;
        border: none;
    }
    
    .language-selector img,
    .search-btn img {
        width: 24px;
        height: 24px;
        filter: brightness(0) saturate(100%) invert(100%);
    }
    
    /* Show Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        width: 50px;
        height: 50px;
        background: none;
        border: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        gap: 4px;
        padding: 0;
        margin-left: auto;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 3px;
        background-color: var(--white);
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Navigation */
    .mobile-nav {
        top: 100px;
    }
    
    /* Mobile Search Overlay */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 208, 255, 0.95);
        padding: 0 20px;
    }
    
    .search-container {
        max-width: 700px;
    }
    
    .search-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
    .language-option {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 80px;
    }
    
    .header-left {
        height: 80px;
        padding: 15px;
    }
    
    .logo {
        width: 120px;
    }
    
    .header-right {
        padding: 15px;
    }
    
    .language-selector,
    .search-btn,
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .language-selector img,
    .search-btn img {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-btn span {
        width: 16px;
    }
    
    .mobile-nav {
        top: 80px;
    }
}
/* Slider Section */
.slider-section {
    display: flex;
    height: 100vh;
    min-height: 500px;
}

.slider-sidebar {
    width: 152px;
    background-color: rgba(238, 238, 238, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 0;
    position: relative;
    align-items: center;
    gap: 60px;
}

.slider-counter {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-align: center;
    align-self: center;
    display: block; /* Görünür olması için */
}

.current-slide {
    font-size: 70px;
    font-weight: bold;
    color: #707070;
    line-height: 1;
}

.total-slides {
    font-size: 20px;
    font-weight: 800;
    color: #B9B9B9;
    margin-left: 5px;
}

.slider-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 13px;
    font-weight: bold;
    color: #B9B9B9;
    letter-spacing: 10px;
    text-align: center;
    align-self: center;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: block;
    transition: all 0.3s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%) brightness(0.6); /* Gri */
    transition: all 0.3s ease;
}

.social-link:hover img {
    filter: none; /* Hover'da orjinal renk */
    transform: scale(1.1);
}

.slider-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 63, 105, 0.1);
}

.slider-controls {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 0px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow img {
    width: 30px;
    height: 30px;
    filter: none; /* Orjinal renk */
    transition: all 0.3s ease;
}

.slider-prev:hover {
    transform: translate(-7.07px, 7.07px);
}

.slider-next:hover {
    transform: translate(7.07px, -7.07px);
}

.slider-arrow:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.slider-text-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
}

.slider-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
}

.slider-line {
    width: 120px;
    height: 2px;
    background-color: var(--light-blue);
    margin-bottom: 20px;
}

.mobile-counter {
    display: none;
}

.pattern-overlay {
    position: absolute;
    bottom: -4px;
    right: 0;
    opacity: 0.9;
    z-index: 5;
}

.pattern-overlay img {
    width: 326px;
    height: 326px;
}
/* Desktop slider text */
.slider-text-content.desktop-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    display: block;
}

.slider-text-content.mobile-text {
    display: none; /* Desktop'ta gizli */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slider-section {
        height: 100vh;
        touch-action: pan-x;
    }
    
    .slider-sidebar {
        width: 46px;
        background-color: rgba(238, 238, 238, 0.95);
        padding: 20px 0;
        z-index: 100;
    }
    
    .slider-counter {
        display: none;
    }
    
    .slider-text {
        font-size: 13px;
        letter-spacing: 10px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link img {
        width: 16px;
        height: 16px;
    }
    
    .slider-controls {
        display: none;
    }
    
    .slider-content {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
    }
    
    .slider-content::-webkit-scrollbar {
        display: none;
    }
    
    .slider-images {
        display: flex;
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .slide {
        position: relative;
        min-width: 100%;
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        opacity: 1;
        scroll-snap-align: start;
    }
    
    /* Desktop text gizle */
    .slider-text-content.desktop-text {
        display: none;
    }
    
    /* Mobile text göster - SABİT POZİSYON */
    .slider-text-content.mobile-text {
        display: block;
        position: sticky; /* Fixed ile tam sabit */
        bottom: 100px;
        left: 10px; /* 46px sidebar + 20px margin */
        right: 20px;
        z-index: 50;
        max-width: 400px;
        pointer-events: none;
    }
    
    .mobile-title {
        font-size: 20px;
        max-width: none;
        pointer-events: none;
    }
    
    .mobile-counter {
        display: block;
        color: white;
        margin-top: 15px;
        pointer-events: none;
    }
    
    .current-slide-mobile {
        font-size: 18px;
        font-weight: bold;
        color: var(--white);
    }
    
    .total-slides-mobile {
        font-size: 14px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Pattern overlay da fixed */
    .pattern-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        opacity: 0.9;
        z-index: 10;
    }
    
    .pattern-overlay img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .slider-text-content.mobile-text {
        bottom: 80px;
        left: 10px; /* 40px sidebar + 16px margin */
        right: 15px;
        max-width: 300px;
    }
    
    .mobile-title {
        font-size: 18px;
    }
    
    .pattern-overlay img {
        width: 80px;
        height: 80px;
    }
}

/* Container */
.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    left: -270px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 1;
}

.about-pattern .pattern-image {
    height: auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 200px;
    position: relative;
    z-index: 2;
}

/* Left Content */
.about-left {
    width: 630px;
    flex-shrink: 0;
}

.about-header {
    margin-bottom: 60px;
}

.about-number {
    width: auto;
    margin-bottom: 20px;
}

.about-title {
    font-size: 30px;
    font-weight: 800;
    color: #464749;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 15px;
    font-weight: 400;
    color: #464749;
    line-height: 1.6;
    max-width: 600px;
}

/* Stats */
.about-stats {
    display: flex;
    align-items: center;
    gap: 75px;
}
.about-stats2 {
    display: flex;
    align-items: center;
    gap: 75px;
    padding-top: 60px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 25px;
}



.stat-number {
    font-size: 25px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 17px;
    font-weight: 400;
    color: #929292;
}

.stats-divider {
    width: 1px;
    height: 120px;
    background-color: #C4C4C4;
}

/* Right Content */
.about-right {
    flex: 1;
}

.about-image-container {
    position: relative;
    display: inline-block;
}

.about-image {
    width: auto;
    max-width: 570px;
    height: auto;
    display: block;
}

/* Blue Square */
.blue-square {
    position: absolute;
    bottom: 207px;
    left: -207px;
    width: 207px;
    height: 207px;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 3;
}

.building-icon {
    width: 80px;
    height: 80px;
}

/* Blur Area */
.blur-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 207px;
    height: 207px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 2;
    overflow: hidden;
}

.blur-content {
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blur-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    max-width: 250px;
    text-align: left;
}

/* Hover Effects */
.about-image-container:hover .blue-square {
    width: 240px;
    left: -207px;
}

.about-image-container:hover .blur-area {
    width: 412px;
}

.about-image-container:hover .blur-content {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }
    
    .about-left {
        width: 550px;
    }
    
    .blue-square {
        left: -80px;
        bottom: 150px;
    }
    
    .about-image-container:hover .blue-square {
        left: -110px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 80px;
        text-align: center;
    }
    
    .about-left {
        width: 100%;
        max-width: 700px;
    }
    
    .about-stats {
        justify-content: center;
    }
    .about-stats2 {
        justify-content: center;
    }
    
    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blue-square {
        left: -50px;
        bottom: 120px;
        width: 150px;
        height: 150px;
    }
    
    .building-icon {
        width: 60px;
        height: 60px;
    }
    
  
    .about-image-container:hover .blue-square {
        width: 180px;
        left: -65px;
    }
    
   
    
    .blur-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-number {
        height: 60px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    .about-stats2 {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-divider {
        width: 60px;
        height: 1px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 15px;
    }
    
    .blue-square {
        left: -30px;
        bottom: 80px;
        width: 120px;
        height: 120px;
    }
    
    .building-icon {
        width: 40px;
        height: 40px;
    }
    

    .about-image-container:hover .blue-square {
        width: 140px;
        left: -40px;
    }
    
    .about-image {
        width: 70%;
        max-width: 600px;
        height: auto;
        margin-left: 100px;
    }
    
    .blur-title {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    .blue-square {
        left: 20px;
        bottom: 99px;
        width: 80px;
        height: 80px;
    }
    .container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 20px;
    }
    .blur-area {
        height: 100px;
        left: 100px;
    }

    


    
    .blur-content {
        opacity: 1;
        padding: 20px;
    }
    
    
}
/* SFS Section */
/*.sfs-section {
   
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sfs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1;
}


.sfs-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    z-index: 3;
}

.sfs-logo-mask {
    position: relative;
    display: inline-block;
    max-width: 800px;
    width: 100%;
}

.sfs-back-logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;

}

.sfs-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.sfs-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.sfs-description {
    font-size: 15px;
    font-weight: 400;
    color: #464749;
    line-height: 1.6;
    text-align: center;
}

.sfs-side-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.sfs-side-image.left {
    left: -250px;
}

.sfs-side-image.right {
    right: -280px;
}

.sfs-side-image img {
    height: auto;
    opacity: 0.8;
}


.sfs-pattern {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.sfs-pattern img {
   
    opacity:1;
}


@media (max-width: 1200px) {
    .sfs-side-image.left {
        left: -30px;
    }
    
    .sfs-side-image.right {
        right: -30px;
    }
    
    .sfs-side-image img {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .sfs-section {
        padding: 80px 0;
    }
    
    .sfs-title {
        font-size: 18px;
    }
    
    .sfs-side-image img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .sfs-section {
        padding: 60px 0;
    }
    
    .sfs-logo-container {
        margin-bottom: 40px;
    }
    
    .sfs-title {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .sfs-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .sfs-side-image {
        display: none; 
    }
    
    .sfs-pattern img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .sfs-section {
        padding: 40px 0;
    }
    
    .sfs-title {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .sfs-description {
        font-size: 13px;
    }
}
*/
/* Categories Slider Section */
.categories-section {

    padding: 80px 0;
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}

.categories-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.categories-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.categories-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.category-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100vw;
    margin: 0 auto;
    background-image: url('../img/back-kategori.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
  
}

.category-item {
    position: relative;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100vw / 4);
    height: 600px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.categories-slide::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--light-blue) 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}
.category-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 150px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.category-image img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    z-index: 3;
}

.category-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    transition: letter-spacing 0.3s ease;
    height: 400px;
    text-transform: uppercase;
    
}

.category-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
}

.category-link span {
    font-size: 13px;
    color: var(--light-blue);
    font-weight: 600;
}

.category-arrow {
    transition: all 0.3s ease;
}

/* Hover Effects */
.category-item:hover .category-overlay {
    opacity: 0.3;
}

.category-item:hover .category-title {
    letter-spacing: 10px;
}

.category-item:hover .category-link {
    opacity: 1;
    transform: translateX(0);
}
.category-item:hover .category-content .category-link .category-arrow{
    transform: translateX(50px);
}
/* Controls */
.categories-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100vw;
    margin: 60px auto 0;
    padding: 0 20px;
}

.categories-pattern {
    transform: rotate(180deg);
}



.categories-arrows {
    display: flex;
    gap: 0;
}

.categories-arrow {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-arrow img {
    width: 30px;
    height: 30px;
    filter: none;
    transition: all 0.3s ease;
}

.categories-prev:hover {
    transform: translate(-7.07px, 7.07px);
}

.categories-next:hover {
    transform: translate(7.07px, -7.07px);
}

.categories-arrow:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.categories-counter {
    font-size: 70px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
}

.current-categories-slide {
    color: #707070;
}

.total-categories-slides {
    font-size: 20px;
    font-weight: 800;
    color: #B9B9B9;
    margin-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .category-items {
        padding: 0 40px;
        gap: 20px;
    }
    
    .category-image {
        width: 150px;
        height: 100px;
        top: 15px;
        right: 15px;
    }
    
    .category-image img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .category-title {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .categories-section {
        padding: 60px 0;
        padding-top: 0px;
    }
    
    .category-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-controls {
        margin-top: 40px;
    }
    .category-item {
        width: calc(100vw / 2);
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 40px 0;
        padding-top: 0px;
    }
    
    .category-items {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 15px;
        min-width: 100%;
    }
    .category-items::before {
        display: none;
    }
    .categories-slide {
        min-width: 100%;
    }
    .categories-pattern {
        display: none;
    }
    .categories-arrows {
        display: none;
    }
    .category-item {
        min-height: 200px;
    }
    
    .category-image {
        width: 120px;
        height: 80px;
        top: 10px;
        right: 10px;
    }
    
    .category-image img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .category-title {
        font-size: 20px;
        text-orientation: mixed;
        position: absolute;
        bottom: 60px;
        left: 30px;
    }
    
    .category-link {
        position: static;
        margin-top: 10px;
        margin-left: 15px;
    }
    
    .category-item:hover .category-link,
    .category-link {
        opacity: 1;
        transform: translateX(0);
    }
    
    .categories-controls {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .categories-arrows {
        order: 2;
    }
    
    .categories-counter {
        order: 3;
        font-size: 50px;
    }
    
    .categories-pattern {
        order: 1;
    }
    
    .categories-pattern img {
        width: 60px;
        height: 60px;
    }
    .category-item {
        width: 100vw;
    }
    .category-link {
        display: none;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 30px 0;
        padding-top: 0px;
    }
    
    .category-item {
        min-height: 160px;
    }
    
    .category-image {
        width: 200px;
        height: 150px;
    }
    
    .category-image img {
        max-width: 100px;
        max-height: 100px;
    }
    
    .category-title {
        font-size: 20px;
        bottom: 40px;
    }
    
    .category-link span {
        font-size: 11px;
    }
    
    .categories-counter {
        font-size: 40px;
    }
}

/* Media Center Section */
.media-section {
    background-color: #f8f8f8;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.media-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left Side - Catalog Download */
.media-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-download {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.catalog-circle {
    width: 394px;
    height: 394px;
    background-color: var(--light-blue);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.download-icon {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease;
}

.catalog-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: all 0.3s ease;
}

.catalog-text {
    position: absolute;
    bottom: -100px;
    text-align: center;
}

.catalog-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.catalog-line {
    width: 20px;
    height: 2px;
    background-color: var(--light-blue);
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Catalog Hover Effects */
.catalog-download:hover .catalog-circle {
    transform: scale(1.1);
}

.catalog-download:hover .catalog-image {
    transform: translate(-50%, -45%);
}

.catalog-download:hover .catalog-title {
    transform: translateY(-5px);
}

.catalog-download:hover .catalog-line {
    width: 40px;
}

/* Right Side - Media Grid */
.media-right {
    flex: 1;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 330px);
    grid-template-rows: repeat(2, 261px);
    gap: 30px;
}

.media-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

/* Border Radius */
.media-item-1 {
    border-top-left-radius: 80px;
}

.media-item-2 {
    border-top-right-radius: 80px;
}

.media-item-3 {
    border-bottom-left-radius: 80px;
}

.media-item-4 {
    background-color: #464749;
    border-bottom-right-radius: 80px;
}

.media-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    font-weight: 800;
    color: #707070;
    -webkit-text-stroke: 2px #707070;
    -webkit-text-fill-color: transparent;
    text-stroke: 2px #707070;
    text-fill-color: transparent;
}

.media-title {
    font-size: 17px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    transition: all 0.3s ease;
}

.media-item-4 .media-title {
    color: var(--white);
}

.media-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: all 0.3s ease;
}

/* Media Item Hover Effects */
.media-item:hover {
    background-color: var(--dark-blue);
}

.media-item-4:hover {
    background-color: var(--white);
}

.media-item:hover .media-title {
    color: var(--white);
    transform: translateX(10px);
}

.media-item-4:hover .media-title {
    color: #000000;
}

/* Side Water Image */
.media-side-water {
    position: absolute;
    left: -300px;
    top: 70%;
    transform: translateY(-50%) rotate(120deg);
    z-index: 1;
    opacity: 1;
}

.media-side-water img {
    width: auto;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .media-content {
        gap: 40px;
    }
    
    .catalog-circle {
        width: 300px;
        height: 300px;
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 280px);
        grid-template-rows: repeat(2, 220px);
        gap: 10px;
    }
    
    .media-side-water {
        left: -50px;
        display: none;
    }
    
}

@media (max-width: 992px) {
    .media-section {
        padding: 80px 0;
    }
    .catalog-image {
        width: 250px;
    }
    
    .media-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .catalog-circle {
        width: 250px;
        height: 250px;
    }

    .catalog-text {
        bottom: -40px;
    }
    .media-number {
        font-size: 40px;
        top: 15px;
        right: 15px;
    }
    
    .media-title {
        font-size: 15px;
    }
    
    .media-side-water {
        display: none;
    }
}

@media (max-width: 768px) {
    .media-section {
        padding: 60px 0;
    }
    
    .catalog-circle {
        width: 200px;
        height: 200px;
    }
        
    .media-grid {
        grid-template-columns: repeat(2, 150px);
        grid-template-rows: repeat(2, 160px);
        justify-content: center;
    }
    .catalog-title {
        font-size: 15px;
    }
    

    .media-item-1 {
    border-top-left-radius: 30px;
    }

    .media-item-2 {
        border-top-right-radius: 30px;
    }

    .media-item-3 {
        border-bottom-left-radius: 30px;
    }

    .media-item-4 {
        border-bottom-right-radius: 30px;
    }
    .media-item {
        padding: 20px;
    }
    
    .media-number {
        font-size: 30px;
        top: 10px;
        right: 10px;
    }
    
    .media-title {
        font-size: 14px;
    }
    
    .media-icon {
        bottom: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .media-section {
        padding: 40px 0;
    }
    
    .catalog-circle {
        width: 150px;
        height: 150px;
    }
    
    .catalog-title {
        font-size: 13px;
    }
    
   
    .media-item {
        padding: 15px;
    }
    
    .media-number {
        font-size: 25px;
    }
    
    .media-title {
        font-size: 12px;
    }
}

/* Footer */
.footer {
    position: relative;
}

/* Footer Top Section */
.footer-top {
    background: linear-gradient(
        to right,
        #f8f8f8 50%, /* sol alan */
        var(--dark-blue) 50% /* sağ alan */
    );
    padding: 0;
}


.footer-top-content {
    display: flex;
    min-height: 100px;
}

.footer-logo-section {
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px;
    min-width: 400px;
}

.footer-logo {
    width: 332px;
    height: auto;
}

.footer-contact-section {
    background-color: var(--dark-blue);
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-contact-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    transition: all 0.3s ease;
}

.call-us-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--light-blue);
    letter-spacing: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-line {
    width: 380px;
    height: 1px;
    background-color: var(--light-blue);
    transition: all 0.3s ease;
    transform-origin: left; /* ✅ SAĞ sabit kalsın */
}

.footer-phone {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

/* Hover Effect for Contact Section */
.footer-contact-section:hover .contact-line {
    width: 240px;         /* Çizgi kısalıyor */
    margin-left: 140px;   /* Sol tarafa boşluk veriliyor */
}

.footer-contact-section:hover .call-us-text {
    transform: translateX(140px); /* ✅ Sağa kayacak */
}

/* Footer Middle Section */
.footer-middle {
    background-color: var(--dark-blue);
    padding: 80px 0;
}

.footer-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.footer-address,
.footer-email {
    font-size: 15px;
    font-weight: 200;
    color: var(--white);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-right: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(99%) saturate(3204%) hue-rotate(169deg) brightness(103%) contrast(101%);
    transition: all 0.3s ease;
}

.social-icon:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Footer Bottom Section */
.footer-bottom {
    background: linear-gradient(
        to right,
        #f8f8f8 50%, /* sol alan */
        var(--dark-blue) 50% /* sağ alan */
    );
}

.footer-nav {
    display: flex;
    gap: 55px;
    padding-bottom: 30px;
    padding-top: 30px;
}

.footer-nav-link {
    color: #464749;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--dark-blue);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--dark-blue);
}

.privacy-link {
    font-size: 12px;
    font-weight: 400;
    color: var(--light-blue);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.fides-logo {
    height: 30px;
    width: auto;
    padding-right: 30px;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: 128px;
    right: 200px;
    width: 153px;
    height: 153px;
    background-color: #464749;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
    opacity: 1;
    gap: 5px;
}

.back-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    transition: all 0.3s ease;
    transform: rotate(180deg) translateY(10px);

}

.back-icon {
    transform: translateY(10px);
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
}

.back-to-top:hover .back-text {
    transform: rotate(180deg) translateY(-20px);
}

.back-to-top:hover .back-icon {
    transform: translateY(-20px);
}

@media (max-width: 1668px) {
    .back-to-top {
        display: none;
    }
    .footer-phone {
        font-size: 25px;
    }
}
@media (max-width: 1441px) {
    .slider-sidebar {
        gap: 10px;
    }
    .nav-links {
        gap: 20px;
    }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .footer-logo {
        width: 250px;
    }
    
    .footer-logo-section {
        min-width: 300px;
        padding: 25px 30px;
    }
    
    .contact-line {
        width: 280px;
    }
    
    .footer-phone {
        font-size: 24px;
    }
    
    .footer-nav {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-top-content {
        flex-direction: column;
    }
    
    .footer-logo-section {
        min-width: auto;
        justify-content: center;
        padding: 30px;
    }
    
    .footer-contact-section {
        justify-content: center;
        padding: 20px;
    }
    
    .footer-middle-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
        max-width: 250px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .back-to-top {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        width: 200px;
    }
    .footer-top-content {
        flex-direction: row;
    }
    .footer-contact-content {
        justify-content: flex-end;
    }
    .call-us-text {
        display: none;
    }
    .contact-line {
        display: none;
    }
    .footer-phone {
        font-size: 15px;
    }
    .footer-middle {
        padding: 20px 0;
    }
    
    
    .footer-address,
    .footer-email {
        font-size: 13px;
        text-align: left;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-icon img {
        width: 24px;
        height: 24px;
    }
    
    .footer-nav {
        display: none; /* Mobile'da gizli */
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .copyright-text {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .privacy-link {
        font-size: 10px;
    }
    
    .back-to-top {
        display: none; /* Mobile'da gizli */
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 120px;
    }
    
    .footer-logo-section {
        padding: 20px;
        max-width: 150px;
    }
    
    .footer-middle {
        padding: 15px 0;
    }
    .copyright-text {
        text-align: left;
        max-width: 250px;
    }
    .footer-bottom-content {
        align-items: flex-start;
    }
    .footer-copyright {
        align-items: flex-start;
    }
    .footer-bottom-container {
        padding: 0px 15px!important;
    }
    .footer-bottom {
        padding: 15px 0;
        background: linear-gradient(
        to right,
        #f8f8f8 70%, /* sol alan */
        var(--dark-blue) 30% /* sağ alan */
        );
    }
    .footer-bottom-container {
        background-color: transparent!important;
    }
    
    .fides-logo {
        height: 20px;
    }
}

.footer-nav-link::after {
    content: '';
    position: relative;
    display: block;
    left: 50%;
    margin-top: 10px;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--light-blue);
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    transform: translateY(-2px);
}

.footer-nav-link:hover::after {
    width: 30px;
}

.footer-bottom-container {
    background-color: #f8f8f8;
    padding: 40px 0;
    
}

@media (max-width: 1025px) {
    .contact-line {
        width: 80px;
    }
    .footer-contact-section:hover .contact-line {
        width: 40px;
        margin-left: 40px;
    }
    .footer-contact-section:hover .call-us-text {
        transform: translateX(40px);
    }
}

/* Corporate Banner Section */
.corporate-banner {
    display: flex;
    min-height: 500px;
}

.corporate-sidebar {
    width: 150px;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 0;
}

.corporate-social {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.corporate-social-link {
    display: block;
    transition: all 0.3s ease;
}

.corporate-social-link img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.corporate-social-link:hover img {
    filter: brightness(0) saturate(100%) invert(65%) sepia(99%) saturate(3204%) hue-rotate(169deg) brightness(103%) contrast(101%);
    transform: scale(1.1);
}

.corporate-content {
    flex: 1;
    position: relative;
    background-image: url('../img/kurumsal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.back2 {
    background-image: url('../img/medya.jpg');
}
.back3 {
    background-image: url('../img/iletisim.jpg');

}
.back4 {
    background-image: url('../img/urun.jpg');
}
.corporate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 63, 105, 0.2);
}

.corporate-header {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 300px;
}

.corporate-left {
    position: relative;
}

.corporate-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 5px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}

.corporate-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 64px;
    height: 3px;
    background-color: var(--light-blue);
}

.corporate-right {
    display: flex;
    align-items: center;
}

.corporate-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.breadcrumb-text {
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
}

.breadcrumb-arrow {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
}

.corporate-breadcrumb:hover .breadcrumb-arrow {
    filter: brightness(0) saturate(100%) invert(100%);
    transform: translate(-7.07px, 7.07px);
}

/* Corporate About Section */
.corporate-about {
    background: linear-gradient(to right, var(--light-gray) 150px, #464749 150px);
    height: 154px;
    position: relative;
    overflow: hidden;
}
.corporate-about-container {
    background-color: #464749;
}

.corporate-about .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.corporate-about-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}
.corporate-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 9;
}

.corporate-pattern img {
    width: auto;
    height: 100%;
    opacity: 1;
    mix-blend-mode: multiply;
}
.container2 {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Mobile Responsive */
@media (max-width: 1025px) {
  
  
    .corporate-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
 
    .corporate-sidebar {
        width: 46px;
        padding: 20px 0;
    }
    
    .corporate-social {
        gap: 15px;
    }
    
    .corporate-social-link img {
        width: 24px;
        height: 24px;
    }
    
    .corporate-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        margin-top: 200px;
    }
    
    .corporate-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .corporate-title::after {
        width: 50px;
        height: 2px;
        bottom: -15px;
    }
    
    .breadcrumb-text {
        font-size: 15px;
    }
    
    .breadcrumb-arrow {
        width: 18px;
        height: 18px;
    }
    
    .corporate-about {
        height: 120px;
    }
    
    .corporate-about-title {
        font-size: 20px;
    }
    
 
    
    .corporate-pattern img {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .corporate-banner {
     
        min-height: 350px;
    }
    
   
    
    .corporate-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .corporate-title::after {
        width: 40px;
    }
    
    .breadcrumb-text {
        font-size: 14px;
    }
    
    .breadcrumb-arrow {
        width: 16px;
        height: 16px;
    }
    
    .corporate-about {
        height: 100px;
    }
    
    .corporate-about-title {
        font-size: 18px;
    }
}

/* Media Center Section */
.media-center-section {
    background-color: #f8f8f8;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.media-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* Catalog Download - Top */
.media-center-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-catalog-download {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.media-catalog-circle {
    width: 394px;
    height: 394px;
    background-color: var(--light-blue);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.media-download-icon {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease;
}

.media-catalog-image {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: all 0.3s ease;
}

.media-catalog-text {
    position: absolute;
    bottom: -100px;
    text-align: center;
}

.media-catalog-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.media-catalog-line {
    width: 20px;
    height: 2px;
    background-color: var(--light-blue);
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Catalog Hover Effects */
.media-catalog-download:hover .media-catalog-circle {
    transform: scale(1.1);
}

.media-catalog-download:hover .media-catalog-image {
    transform: translate(-50%, -45%);
}

.media-catalog-download:hover .media-catalog-title {
    transform: translateY(-5px);
}

.media-catalog-download:hover .media-catalog-line {
    width: 40px;
}

/* Media Grid - Bottom */
.media-center-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.media-center-grid {
    display: grid;
    grid-template-columns: repeat(3, 330px);
    gap: 30px;
}

.media-center-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
    height: 261px;
}

/* Border Radius */
.media-center-item-1 {
    border-top-left-radius: 80px;
}

.media-center-item-2 {
    border-radius: 0;
}

.media-center-item-3 {
    border-top-right-radius: 80px;
}

.media-center-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    font-weight: 800;
    color: #707070;
    -webkit-text-stroke: 2px #707070;
    -webkit-text-fill-color: transparent;
    text-stroke: 2px #707070;
    text-fill-color: transparent;
}

.media-center-title {
    font-size: 17px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    transition: all 0.3s ease;
}

.media-center-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
}

/* Media Item Hover Effects */
.media-center-item:hover {
    background-color: var(--dark-blue);
}

.media-center-item:hover .media-center-title {
    color: var(--white);
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .media-catalog-circle {
        width: 300px;
        height: 300px;
    }
    
    .media-catalog-image {
        width: 300px;
    }
    
    .media-download-icon {
        width: 80px;
    }
    
    .media-center-grid {
        grid-template-columns: repeat(3, 280px);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .media-center-section {
        padding: 80px 0;
    }
    
    .media-center-content {
        gap: 60px;
    }
    
    .media-catalog-circle {
        width: 250px;
        height: 250px;
    }
    
    .media-catalog-image {
        width: 250px;
    }
    
    .media-download-icon {
        width: 70px;
    }
    
    .media-catalog-text {
        bottom: -60px;
    }
    
    .media-center-grid {
        grid-template-columns: repeat(3, 250px);
        gap: 15px;
    }
    
    .media-center-item {
        height: 220px;
        padding: 25px;
    }
    
    .media-center-number {
        font-size: 40px;
        top: 15px;
        right: 15px;
    }
    
    .media-center-title {
        font-size: 15px;
    }
    
    .media-center-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .media-center-section {
        padding: 60px 0;
    }
    
    .media-center-content {
        gap: 40px;
    }
    
    .media-catalog-circle {
        width: 200px;
        height: 200px;
    }
    
    .media-catalog-image {
        width: 200px;
    }
    
    .media-download-icon {
        width: 60px;
    }
    
    .media-catalog-title {
        font-size: 15px;
    }
    
    .media-catalog-text {
        bottom: -50px;
    }
    
    .media-center-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        width: 100%;
    }
    
    .media-center-item {
        height: 180px;
        padding: 20px;
    }
    
    .media-center-item-1 {
        border-top-left-radius: 30px;
        border-top-right-radius: 0;
    }
    
    .media-center-item-2 {
        border-radius: 0;
    }
    
    .media-center-item-3 {
        border-top-right-radius: 0;
        border-bottom-right-radius: 30px;
    }
    
    .media-center-number {
        font-size: 30px;
        top: 10px;
        right: 10px;
    }
    
    .media-center-title {
        font-size: 14px;
    }
    
    .media-center-icon {
        bottom: 15px;
        right: 15px;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .media-center-section {
        padding: 40px 0;
    }
    
    .media-catalog-circle {
        width: 150px;
        height: 150px;
    }
    
    .media-catalog-image {
        width: 200px;
    }
    
    .media-download-icon {
        width: 50px;
    }
    
    .media-catalog-title {
        font-size: 13px;
    }
    
    .media-catalog-text {
        bottom: -40px;
    }
    
    .media-center-item {
        height: 150px;
        padding: 15px;
    }
    
    .media-center-number {
        font-size: 25px;
    }
    
    .media-center-title {
        font-size: 12px;
    }
    
    .media-center-icon {
        width: 20px;
        height: 20px;
    }
}

/* Photos Gallery Section - Düzeltilmiş */
.photos-gallery-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}



.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.photo-item:hover .photo-image {
    filter: blur(3px);
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
    visibility: visible;
}

.photo-expand-icon {
    transition: all 0.3s ease;
}

.expand-svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.photo-item:hover .expand-svg {
    transform: scale(1.2);
}

/* Photo Modal - Aynı kalacak */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.photo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.photo-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.photo-modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.photo-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.photo-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    display: flex;
    justify-content: space-between;
    left: -60px;
    pointer-events: none;
}

.photo-modal-prev,
.photo-modal-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: all;
}

.photo-modal-prev:hover,
.photo-modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.photo-modal-prev img,
.photo-modal-next img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.photo-modal-prev:hover {
    transform: translate(-7.07px, 7.07px);
}

.photo-modal-next:hover {
    transform: translate(7.07px, -7.07px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .photos-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .expand-svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .photos-gallery-section {
        padding: 60px 0;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .photo-item {
        aspect-ratio: 16/12;
    }
    
    .expand-svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .photos-gallery-section {
        padding: 40px 0;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .photo-item {
        aspect-ratio: 16/10;
    }
    
    .expand-svg {
        width: 40px;
        height: 40px;
    }
    
    .photo-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .photo-modal-nav {
        width: calc(100% + 80px);
        left: -40px;
    }
    
    .photo-modal-prev,
    .photo-modal-next {
        width: 40px;
        height: 40px;
    }
    
    .photo-modal-prev img,
    .photo-modal-next img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .expand-svg {
        width: 35px;
        height: 35px;
    }
    
    .photo-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .photo-modal-close {
        top: -50px;
        right: 0px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .photo-modal-nav {
        width: calc(100% + 60px);
        left: -30px;
    }
    
    .photo-modal-prev,
    .photo-modal-next {
        width: 35px;
        height: 35px;
    }
}

/* Videos Gallery Section - Temizlenmiş */
.videos-gallery-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.video-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-item:hover .video-image {
    filter: blur(3px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
    visibility: visible;
}

.video-play-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.play-svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}



.play-text {
    font-size: 11px;
    font-weight: 900;
    color: var(--dark-blue);
    text-align: center;
    white-space: nowrap;
}

.video-title {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 900;
    color: var(--dark-blue);
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .videos-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .play-svg {
        width: 50px;
        height: 50px;
    }
    
    .play-text {
        font-size: 10px;
    }
    
    .video-title {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 992px) {
    .videos-gallery-section {
        padding: 60px 0;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .video-image {
        aspect-ratio: 16/12;
    }
    
    .play-svg {
        width: 45px;
        height: 45px;
    }
    
    .play-text {
        font-size: 9px;
    }
    
    .video-title {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .videos-gallery-section {
        padding: 40px 0;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .video-image {
        aspect-ratio: 16/10;
    }
    
    .play-svg {
        width: 40px;
        height: 40px;
    }
    
    .play-text {
        font-size: 8px;
    }
    
    .video-title {
        font-size: 12px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .play-svg {
        width: 35px;
        height: 35px;
    }
    
    .play-text {
        font-size: 7px;
    }
    
    .video-title {
        font-size: 11px;
        margin-top: 8px;
    }
}

/* Downloads Section */
.downloads-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.download-item {
    background-color: #DFDFDF;
    border-top-right-radius: 80px;
    padding: 30px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 290px;
    position: relative;
}

.download-item:hover {
    background-color: var(--dark-blue);
}

.download-content {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.download-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.3;
    max-width: 200px;
}

.download-item:hover .download-title {
    color: var(--white);
}

.download-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
}

.download-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.download-arrow {
    position: absolute;
    top: -60px;
    padding-right: 30px;
    transition: all 0.3s ease;
}
.download-icon {
    padding-right: 30px;

}


.download-item:hover .download-arrow {
    transform: translateY(15px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .downloads-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .download-item {
        padding: 25px;
    }
    
    .download-title {
        font-size: 15px;
        max-width: 180px;
    }
    
    .download-number {
        font-size: 40px;
    }
    
}

@media (max-width: 992px) {
    .downloads-section {
        padding: 60px 0;
    }
    
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .download-item {
        padding: 20px;
        border-top-right-radius: 50px;
    }
    
    .download-title {
        font-size: 14px;
        max-width: 160px;
    }
    
    .download-number {
        font-size: 35px;
    }

}

@media (max-width: 768px) {
    .downloads-section {
        padding: 40px 0;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .download-item {
        padding: 20px;
        border-top-right-radius: 40px;
    }
    
    .download-title {
        font-size: 13px;
        max-width: 200px;
    }
    
    .download-number {
        font-size: 30px;
    }
    
 
}

@media (max-width: 480px) {
    .downloads-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .download-item {
        padding: 15px;
        border-top-right-radius: 30px;
    }
    
    .download-title {
        font-size: 12px;
        max-width: 150px;
    }
    
    .download-number {
        font-size: 25px;
    }
   
}

@media (max-width: 1500px) {
    .contact-line {
        width: 250px;
    }
    .footer-contact-section:hover .contact-line {
        width: 110px;
    }

}
/* Contact Section */
.contact-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

/* Top Contact Info */
.contact-info-top {
    margin-bottom: 60px;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-label {
    font-size: 17px;
    font-weight: 400;
    color: var(--dark-blue);
    min-width: 80px;
}

.contact-separator {
    font-size: 17px;
    font-weight: 400;
    color: var(--dark-blue);
    margin: 0 10px;
}

.contact-value {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
}

/* Social Media */
.contact-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-social-link {
    display: block;
}

.contact-social-link img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(2000%) hue-rotate(200deg) brightness(92%) contrast(108%);
}

/* Bottom Section */
.contact-bottom {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* Map Area */
.contact-map-area {
    width: 690px;
    height: 820px;
    flex-shrink: 0;
}

.contact-map-container {
    width: 690px;
    height: 820px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.contact-map {
    width: 690px;
    height: 820px;
    border: 0;
    border-radius: 50px;
}

/* Contact Form Area */
.contact-form-area {
    flex: 1;
}

.contact-form-header {
    position: relative;
    margin-bottom: 40px;
}

.form-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: left;
    position: relative;
    top: 25px;
}

.form-title {
    font-size: 100px;
    font-weight: 800;
    color: #DCDCDC;
    margin: -20px 0 0 0;
    text-align: left;
    line-height: 0.8;
    text-transform: uppercase;
}

/* Contact Form - Düzeltilmiş */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .form-group {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #AAAAAA;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #AAAAAA;
    font-size: 17px;
    font-weight: 400;
}

.form-input:focus {
    border-bottom-color: var(--dark-blue);
}

.form-textarea {
    resize: vertical;
    min-height: 60px;
}

/* Submit Button */
.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.submit-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.submit-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.submit-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.submit-button:hover .submit-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-bottom {
        gap: 40px;
    }
    
    .contact-map-area {
        width: 500px;
        height: 600px;
    }
    
    .contact-map-container {
        width: 500px;
        height: 600px;
    }
    
    .contact-map {
        width: 500px;
        height: 600px;
    }
    
    .form-title {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-bottom {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-map-area {
        width: 100%;
        height: 400px;
        max-width: 600px;
    }
    
    .contact-map-container {
        width: 100%;
        height: 400px;
    }
    
    .contact-map {
        width: 100%;
        height: 400px;
    }
    
    .contact-form-area {
        max-width: 100%;
    }
    
    .form-title {
        font-size: 70px;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .contact-label {
        min-width: auto;
    }
    
    .contact-separator {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-top {
        margin-bottom: 40px;
    }
    
    .contact-label,
    .contact-value {
        font-size: 15px;
    }
    
    .contact-social {
        gap: 15px;
    }
    
    .contact-social-link img {
        width: 28px;
        height: 28px;
    }
    
    .contact-map-area {
        height: 300px;
    }
    
    .contact-map-container {
        height: 300px;
        border-radius: 30px;
    }
    
    .contact-map {
        height: 300px;
        border-radius: 30px;
    }
    
    .form-title {
        font-size: 60px;
    }
    
    .form-subtitle {
        font-size: 12px;
    }
    
    .form-input {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .form-input::placeholder {
        font-size: 15px;
    }
    
    .submit-icon {
        width: 28px;
        height: 28px;
    }
    
    .submit-text {
        font-size: 14px;
    }
    
    /* Form responsive */
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .contact-info-top {
        margin-bottom: 30px;
    }
    
    .contact-label,
    .contact-value {
        font-size: 14px;
    }
    
    .contact-social-link img {
        width: 24px;
        height: 24px;
    }
    
    .contact-map-area {
        height: 250px;
    }
    
    .contact-map-container {
        height: 250px;
        border-radius: 25px;
    }
    
    .contact-map {
        height: 250px;
        border-radius: 25px;
    }
    
    .form-title {
        font-size: 50px;
    }
    
    .form-input {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .form-input::placeholder {
        font-size: 14px;
    }
    
    .submit-icon {
        width: 24px;
        height: 24px;
    }
    
    .submit-text {
        font-size: 13px;
    }
}
/* Ürün Grupları Sayfası için ek CSS */
.categories-section2 {
    padding: 80px 0;
}

/* Container içindeki düzenleme */
.categories-section2 .container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Category-items'ları container içinde sıkıştır */
.categories-section2 .category-items {
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
}

.categories-section2 .category-item {
    width: calc(100%);
}

/* Responsive */
@media (max-width: 992px) {
    .categories-section2 {
        padding: 60px 0;
    }
    
    .categories-section2 .category-item {
        width: calc(100%);
    }
}

@media (max-width: 768px) {
    .categories-section2 {
        padding: 40px 0;
    }
    
    .categories-section2 .container {
        display: block;
    }
    
    .categories-section2 .category-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        margin-bottom: 0;
    }
    
    .categories-section2 .category-item {
        width: 100%;
        height: 600px;
    }
    .category-items2 {
        height: auto;
    }
}



/* Products Section */
.products-section {
    background-color: white;
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-bottom: 1px solid #707070;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.overlay-content .overlay-icon {
    width: auto;
    transition: all 0.3s ease;
}

.overlay-text {
    font-size: 11px;
    font-weight: 900;
    color: var(--light-blue);
    white-space: nowrap;
}

.product-info {
    padding: 20px 15px;
}

.product-name {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark-blue);
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.product-category {
    font-size: 13px;
    font-weight: 400;
    color: #929292;
    margin: 0;
    text-align: left;
}

/* Hover Effects */
.product-item:hover .product-overlay {
    opacity: 0.9;
    visibility: visible;
}

.product-item:hover .overlay-icon {
    transform: translateX(50px);
}

.product-item:hover .product-name {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-info {
        padding: 15px 10px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-category {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overlay-icon {
        width: 24px;
        height: 24px;
    }
    
    .overlay-text {
        font-size: 10px;
    }
}

/* Product Detail Section */
.product-detail-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    padding-bottom: 0;
}

.product-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

/* Main Product Image */
.main-image {
    border: 2px solid #E2E2E2;
    padding: 80px;
    background-color: var(--white);
}

.main-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Gallery Navigation */
.gallery-nav {
    cursor: pointer;
}

.nav-image {
    position: relative;
    border: 2px solid #E2E2E2;
    padding: 15px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.nav-image img {
    width: 200px;
    height: auto;
    display: block;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.nav-text {
    font-size: 13px;
    font-weight: 900;
    color: var(--light-blue);
    white-space: nowrap;
}

/* Gallery Navigation Hover Effects */
.gallery-nav:hover .nav-overlay {
    opacity: 0.9;
    visibility: visible;
}

.gallery-prev:hover .nav-icon {
    transform: rotate(180deg) translateX(50px);
}

.gallery-next:hover .nav-icon {
    transform: translateX(50px);
}

/* Order Section */
.order-section {
    position: relative;
    bottom: 150px;
}

.order-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.mail-icon,
.order-icon {
    transition: all 0.3s ease;
}

.mail-icon {
    width: auto;
    height: auto;
    position: relative;
    left: -10px;
}

.order-icon {
    width: auto;
    height: auto;
}

.order-text {
    font-size: 15px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 5px;
    text-align: left;
}

/* Order Link Hover Effects */
.order-link:hover .mail-icon {
    transform: translateX(20px);
}

.order-link:hover .order-icon {
    transform: translateX(20px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-gallery {
        gap: 30px;
    }
    
    .main-image img {
        max-width: 500px;
    }
    
    .nav-image img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 60px 0;
    }
    
    .product-gallery {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-image {
        padding: 20px;
    }
    .main-image img {
        max-width: 400px;
    }
    .order-link {
        align-items: center;
    }
    .nav-image img {
        width: 100px;
    }
    .mail-icon {
        left: 0;
    }
    
    .order-section {
        position: static;
        margin-top: 40px;
        left: auto;
        bottom: auto;
    }
    
    .order-text {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 40px 0;
    }
    
    .main-image img {
        max-width: 300px;
    }
    
    .nav-image img {
        width: 100px;
    }
    
    .order-text {
        font-size: 13px;
        letter-spacing: 2px;
    }
}

.nav-icon {
    transition: all 0.3s ease;
    width: auto!important;
}

.prev-icon {
    transform: rotate(180deg);
    width: auto!important;
}
/* Technical Data Section */
.technical-data-section {
    background-color: white;
    padding: 80px 0;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 35px;
    font-weight: 900;
    color: var(--dark-blue);
    margin: 0;
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background-color: var(--dark-blue);
}

/* Technical Table */
.technical-table {
    margin-bottom: 60px;
    text-align: left;
}

.technical-table img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Description Section */
.description-header {
    margin-bottom: 30px;
}

.description-title {
    color: #707070;
}

.description-line {
    background-color: #707070;
}

.description-content {
    text-align: left;
}

.description-content p {
    font-size: 15px;
    font-weight: 400;
    color: #464749;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 30px;
    }
    
    .section-header {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .technical-data-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-header {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .technical-table {
        margin-bottom: 40px;
    }
    
    .description-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .technical-data-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-header {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .technical-table {
        margin-bottom: 30px;
    }
    
    .description-content p {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

/* Related Products Section */
.related-products-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

/*.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}*/

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-title {
    
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.related-line {
    width: 60px;
    height: 4px;
    background-color: var(--light-blue);
    margin: 0 auto;
}

/* Slider Container */
.related-slider-container {
    position: relative;
    overflow: hidden;
}

.related-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%; /* 3 slide için */
}

.related-slide {
    width: 33.333%;
    flex-shrink: 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 15px;
}

/* Product Items */
.related-products-section .product-item {
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-products-section .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.related-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.related-products-section .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-products-section .overlay-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.related-products-section .overlay-icon {
    width: auto!important;
    transition: all 0.3s ease;
}

.related-products-section .overlay-text {
    font-size: 11px;
    font-weight: 900;
    color: var(--light-blue);
    white-space: nowrap;
}

.related-products-section .product-info {
    padding: 20px 15px;
}

.related-products-section .product-name {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark-blue);
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.related-products-section .product-category {
    font-size: 13px;
    font-weight: 400;
    color: #929292;
    margin: 0;
    text-align: left;
}

/* Hover Effects */
.related-products-section .product-item:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.related-products-section .product-item:hover .overlay-icon {
    transform: translateX(50px);
}

.related-products-section .product-item:hover .product-name {
    transform: translateX(10px);
}

/* Related Controls - Container'ın dışında */
.related-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 10;
}

.related-arrow {
    position: absolute;
    width: auto!important;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.related-prev {
    left: 100px;
}

.related-next {
    right: 100px;
}

.related-arrow img {
 

    transition: all 0.3s ease;
}

.related-prev:hover {
    transform: translate(-7.07px, 7.07px);
    border-radius: 50%;
}

.related-next:hover {
    transform: translate(7.07px, -7.07px);
    border-radius: 50%;
}

.related-arrow:hover img {
   filter: brightness(0.3) saturate(100%);

}

.related-counter {
    font-size: 70px;
    font-weight: bold;
    color: #707070;
    text-align: center;
    margin-top: 40px;
}

.current-related-slide {
    color: #707070;
}

.total-related-slides {
    font-size: 20px;
    font-weight: 800;
    color: #B9B9B9;
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .related-arrow img {
        display: none;
    }
}


@media (max-width: 768px) {
    .related-products-section {
        padding: 60px 0;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-controls {
        top: 50%;
    }
    
    .related-prev {
        left: -15px;
    }
    
    .related-next {
        right: -15px;
    }
    
    .related-counter {
        font-size: 50px;
        margin-top: 30px;
    }
    
    .related-arrow {
        width: 40px;
        height: 40px;
    }
    
    .related-arrow img {
        display: none;
    }
}

@media (max-width: 480px) {
    .related-products-section {
        padding: 40px 0;
    }
    
    .related-products-grid {
        gap: 10px;
    }
    
    .related-counter {
        font-size: 40px;
    }
    
    .related-arrow {
        width: 35px;
        height: 35px;
    }
    
    .related-arrow img {
        display: none;
    }
}

/* SFS Sustainability Section */
.sustainability-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Logo Container - Full Width */
.sustainability-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.sustainability-logo-mask {
    position: relative;
    display: inline-block;
    width: 100vw;
    max-width: none;
}

.sustainability-back-logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
}

/* Content with White Background */
.sustainability-content {
    background-color: var(--white);
    padding: 60px 0 120px 0;
    position: relative;
    z-index: 3;
}

.sustainability-content .container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sustainability-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.sustainability-description {
    font-size: 15px;
    font-weight: 400;
    color: #464749;
    line-height: 1.6;
    text-align: center;
}

/* Side Images */
.sustainability-side-image {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 9;
}

.sustainability-side-image.sustainability-left {
    left: -250px;
}

.sustainability-side-image.sustainability-right {
    right: -280px;
}

.sustainability-side-image img {
    height: auto;
    opacity: 01;
    width: auto;
}

/* Bottom Pattern */
.sustainability-pattern {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.sustainability-pattern img {
    width: 100px;
    height: 100px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sustainability-side-image.sustainability-left {
        left: -150px;
    }
    
    .sustainability-side-image.sustainability-right {
        right: -150px;
    }
    
    .sustainability-side-image img {
        width: 200px;
    }
}

@media (max-width: 992px) {
   
    
    .sustainability-content {
        padding: 40px 0 100px 0;
    }
    
    .sustainability-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .sustainability-side-image img {
        width: 150px;
    }
    
    .sustainability-side-image.sustainability-left {
        left: -80px;
    }
    
    .sustainability-side-image.sustainability-right {
        right: -80px;
    }
}

@media (max-width: 768px) {
    .sustainability-section {
        background-attachment: scroll;
    }
    
   
    
    .sustainability-content {
        padding: 30px 0 80px 0;
    }
    
    .sustainability-title {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    
    .sustainability-description {
        font-size: 14px;
    }
    
    /* Hide side images on mobile */
    .sustainability-side-image {
        display: none;
    }
    
    .sustainability-pattern img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {

    
    .sustainability-content {
        padding: 20px 0 60px 0;
    }
    
    .sustainability-title {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .sustainability-description {
        font-size: 13px;
    }
    
    .sustainability-pattern img {
        width: 50px;
        height: 50px;
    }
}

.product-links {
    text-decoration: none;
}