html, body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

.bg-contact {
    background-color: #070707;
}

.lang-button {
    position: relative;
    width: 47px;
    height: 38px;
    border: 3px solid #3D3D3D;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lang-button.border-white {
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-button.border-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}



.lang-button span {
    font-size: 18px;
    font-weight: 500;
    color: #2D2D2D;
}

.footer-button-text {
    transition: filter 0.3s ease;
}

.group:hover .footer-button-text {
    filter: drop-shadow(0px 0px 14.7px rgba(255, 255, 255, 0.61));
}

/* Footer Menu Links Hover Shadow */
footer a:hover {
    filter: drop-shadow(0px 0px 8px rgba(200, 16, 46, 0.5));
}


/* Blog Card Hover Effects */
.blog-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

.blog-card:hover h3,
.blog-card:hover p,
.blog-card:hover span {
    color: white;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-card:hover .bg-\[\#E7EBEE\] {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

 /* Blog Card Hover Effects */
 .blog-card {
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

.blog-card:hover h3,
.blog-card:hover p,
.blog-card:hover span {
    color: white;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-card:hover .bg-\[\#E7EBEE\] {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Select2 Dark Theme */
.select2-container--default .select2-selection--single {
    background-color: #2A2A2A !important;
    border: 1px solid #3D3D3D !important;
    border-radius: 0 !important;
    height: auto !important;
    padding: 1.5rem 1rem !important;
    min-height: 60px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #9CA3AF !important;
    line-height: normal !important;
    padding: 0 !important;
    font-size: 0.875rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #9CA3AF transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #9CA3AF transparent !important;
}

.select2-dropdown {
    background-color: #2A2A2A !important;
    border: 1px solid #3D3D3D !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-results__option {
    background-color: #2A2A2A !important;
    color: #9CA3AF !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #C8102E !important;
    color: white !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #1a1a1a !important;
    color: white !important;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #C8102E !important;
    outline: none !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #1a1a1a !important;
    border: 1px solid #3D3D3D !important;
    color: white !important;
}

/* Input Shadow Effects */
.input-shadow {
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15), 
                inset 0px 2px 8px 0px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

/* Select2 ile birlikte kullanıldığında */
.select2-container--default .select2-selection--single {
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15), 
                inset 0px 2px 8px 0px rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
}

/* Checkbox Shadow Effects */
input[type="checkbox"].input-shadow {
    appearance: none;
    -webkit-appearance: none;
    width: 1rem;
    height: 1rem;
    border-radius: 0.125rem;
    background-color: #2A2A2A;
    border: 1px solid #3D3D3D;
    cursor: pointer;
    position: relative;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15), 
                inset 0px 2px 8px 0px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

input[type="checkbox"].input-shadow:checked {
    background-color: #C8102E;
    border-color: #C8102E;
}

input[type="checkbox"].input-shadow:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-gradient-radial {
    background: radial-gradient(circle, var(--tw-gradient-stops));
}

/* Kategori Grid Animasyonları */
#categoryGrid {
    display: grid;
    position: relative;
}

/* Tüm kartların başlangıç durumu */
.small-card {
    display: flex;
}

.large-card {
    display: none;
}

/* Mobile - Tüm kartlar aynı */
@media (max-width: 1023px) {
    .category-item {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .small-card {
        display: flex !important;
        opacity: 1 !important;
    }
    
    .large-card {
        display: none !important;
    }
}

/* Desktop için */
@media (min-width: 1024px) {
    .category-item {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .category-item:not(.active-category) {
        opacity: 0.3;
    }
    
    .category-item:not(.active-category) .small-card {
        display: flex !important;
    }
    
    .category-item:not(.active-category) .large-card {
        display: none !important;
    }
    
    .category-item:not(.active-category):hover {
        opacity: 0.5;
    }
    
    .active-category {
        opacity: 1;
    }
    
    /* Desktop'ta active kategorinin büyük kartı görünsün */
    .active-category .large-card {
        display: flex !important;
    }
    
    .active-category .small-card {
        display: none !important;
    }
    
    .small-card, .large-card {
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Fade efektleri */
.hidden {
    display: none !important;
}

/* Category Button Shadow Effects */
.category-button-shadow {
    box-shadow: inset 0 0 13.25px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(72.02px);
    -webkit-backdrop-filter: blur(72.02px);
    transition: all 0.3s ease;
}

.category-button-shadow:hover {
    box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.2);
}

/* Slider Styles */
.slider-container {
    position: relative;
    background: #000;
}

.slider-item {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    transform: scale(1.05);
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.slider-item:not(.active) {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

/* Slide Animations */
.slide-title {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.slide-description {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.slider-main-button {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.slider-catalog-button {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Info Buton Animasyonları */
.info-button-animate-1 {
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
}

.info-button-animate-2 {
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.0s both;
}

.info-button-animate-3 {
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.5s both;
}

/* Button Clip Path */
.clip-path-button {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    position: relative;
}

.clip-path-button::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #A00D25 transparent;
}

.slider-nav {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.slider-dot.active {
    height: 2rem;
    background-color: white;
    opacity: 1;
}

/* Hover Effects */
.slider-nav {
    transition: all 0.2s ease;
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.slider-dot:hover {
    background-color: #C8102E;
}

/* Slider Button Hover Effect */
.slider-button-hover {
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.25));
    transition: all 0.3s ease;
}

.slider-button-hover:hover {
    filter: drop-shadow(0 35px 70px rgba(255, 255, 255, 0.4));
    transform: translateY(-2px);
}

/* Sector Button Styles */
.sectorbutton {
    display: inline-block;
    padding: 0.25rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: 1px solid #D0D6DA;
    border-radius: 9999px;
    background: linear-gradient(to right, #ACB5BA, #D0D6DA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sectorbutton-bg {
    display: inline-block;
    padding: 0.25rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: 1px solid #D0D6DA;
    border-radius: 9999px;
    background: linear-gradient(to right, #ACB5BA, #D0D6DA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Kart Link Stilleri */
a.bg-white {
    text-decoration: none;
}

a.bg-white:hover {
    transform: translateY(-2px);
}

/* H3 Hover Gradient Effect */
.h3-hover-gradient {
    background: linear-gradient(to right, #737373, #A6A6A6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.h3-hover-gradient:hover {
    background: linear-gradient(to right, #F50017, #693036);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sektör Kartı Hover Efektleri */
.sector-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
}

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

.sector-card > * {
    position: relative;
    z-index: 1;
}

.sector-card:hover {
    border-color: transparent !important;
}

.sector-card img {
    transition: filter 0.3s ease;
}

.sector-card:hover img {
    filter: brightness(0) invert(1);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes smoothFloat {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Ana Slider İçindeki Butonlar */
.slider-main-button {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.slider-catalog-button {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.slider-main-button {
    animation-delay: 0.3s;
}

.slider-catalog-button {
    animation-delay: 0.5s;
}

/* Alt Slider Butonları */
.slider-bottom-button {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slider-bottom-button-left {
    animation-delay: 0.7s;
}

.slider-bottom-button-right {
    animation-delay: 0.9s;
}

/* Açıldıktan sonra yumuşak sallanma */
.slider-bottom-button-left {
    animation: fadeInUp 0.8s ease-out 0.7s forwards, smoothFloat 5s ease-in-out 2s infinite;
}

.slider-bottom-button-right {
    animation: fadeInUp 0.8s ease-out 0.9s forwards, smoothFloat 5s ease-in-out 2.5s infinite;
}

.slider-bottom-button:hover {
    transform: translateY(-5px) scale(1.02);
    transition: all 0.3s ease;
}

/* Hover Efektleri */
.slider-main-button:hover,
.slider-catalog-button:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.slider-main-button:hover {
    filter: drop-shadow(0 35px 70px rgba(255, 255, 255, 0.3)) !important;
}

/* Overlay Menu Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-content {
    position: fixed;
    top: 90px;
    right: calc((100vw - min(100vw - 3rem, 1536px)) / 2 + 1.5rem);
    width: 304px;
    max-width: calc(100vw - 3rem);
    padding: 30px 35px;
    background: rgba(103, 103, 103, 0.2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .menu-content {
        right: calc((100vw - min(100vw - 6rem, 1536px)) / 2 + 3rem);
        max-width: 304px;
    }
}

@media (min-width: 1024px) {
    .menu-content {
        right: calc((100vw - min(100vw - 8rem, 1536px)) / 2 + 4rem);
    }
}

.menu-overlay.active .menu-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.menu-header {
    margin-bottom: 30px;
}

.menu-title {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-title-bold {
    font-weight: 700;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.menu-item:hover {
    padding-left: 10px;
    opacity: 0.8;
}

.menu-arrow {
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-item:hover .menu-arrow {
    opacity: 1;
    visibility: visible;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-content {
        top: 80px;
        padding: 25px 30px;
    }
    
    .menu-item {
        font-size: 1rem;
    }
    
    .menu-title {
        font-size: 0.85rem;
    }
}

/* Language Dropdown Styles */
.lang-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lang-dropdown-content {
    position: fixed;
    top: 90px;
    left: auto;
    right: calc((100vw - min(100vw - 3rem, 1536px)) / 2 + 1.5rem);
    width: 200px;
    max-width: calc(100vw - 3rem);
    padding: 30px 35px;
    background: rgba(103, 103, 103, 0.2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px) scale(0.95);
    transform-origin: top right;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown.active .lang-dropdown-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lang-dropdown-header {
    margin-bottom: 20px;
}

.lang-dropdown-title {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lang-dropdown-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.lang-dropdown-item.active {
    color: #C8102E;
    font-weight: 500;
}

.lang-dropdown-item:hover {
    padding-left: 8px;
    opacity: 0.8;
}

.lang-arrow {
    width: 16px;
    height: 16px;
    opacity: 0;
    visibility: hidden;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lang-dropdown-item:hover .lang-arrow {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown-item.active .lang-arrow {
    opacity: 1;
    visibility: visible;
    filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(6943%) hue-rotate(348deg) brightness(93%) contrast(102%);
}

/* Responsive Language Dropdown */
@media (max-width: 768px) {
    .lang-dropdown-content {
        top: 80px;
        padding: 20px 25px;
    }
}

@media (min-width: 768px) {
    .lang-dropdown-content {
        right: calc((100vw - min(100vw - 6rem, 1536px)) / 2 + 3rem);
        max-width: 200px;
    }
}

@media (min-width: 1024px) {
    .lang-dropdown-content {
        right: calc((100vw - min(100vw - 8rem, 1536px)) / 2 + 4rem);
    }
}

/* Hamburger Menu Animation */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1000;
}

/* SVG Icon - Kapalıyken göster */
.hamburger-menu .menu-icon {
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

/* Hamburger Lines - Kapalıyken gizle */
.hamburger-menu .hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.hamburger-line {
    width: 28px;
    height: 2.5px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    display: block;
}

/* Beyaz hamburger menü varyantı */
.hamburger-white .hamburger-line {
    background-color: #fff;
}

/* Menü açıldığında - SVG'yi gizle, hamburger'i göster */
.hamburger-menu.active .menu-icon {
    opacity: 0;
}

.hamburger-menu.active .hamburger-lines {
    opacity: 1;
}

/* Menü açık olduğunda X animasyonu */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Swiper Custom Styles */
.hero-slider {
    width: 100%;
    height: 160vh;
}

.hero-slider .swiper-wrapper {
    height: 160vh;
}

.hero-slider .swiper-slide {
    height: 160vh !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

.hero-slider .swiper-slide > div {
    width: 100%;
    height: 100%;
}

/* Swiper Navigation Buttons */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    cursor: pointer;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

/* Featured Left Text Styles */
.featuredleft {
    background: linear-gradient(90deg, #FFFFFF 0%, #767676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 0px 14.7px rgba(255, 255, 255, 0.61);
}

/* Mobil Slider Düzenlemeleri */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }
    
    .hero-slider .swiper-wrapper {
        height: 100vh;
    }
    
    .hero-slider .swiper-slide {
        height: 100vh !important;
        background-position: center center !important;
        background-size: cover !important;
    }
    
    /* Info butonlarını mobilde gizle */
    .info-button-animate-1,
    .info-button-animate-2,
    .info-button-animate-3 {
        display: none !important;
    }
    
    /* Slider içeriğini mobilde ayarla */
    .hero-slider .swiper-slide .container {
        margin-top: 0 !important;
        padding-top: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-slider .swiper-slide .max-w-9xl {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    /* Slider başlık ve açıklamaları mobilde ayarla */
    .slide-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .slide-description {
        font-size: 0.875rem !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Slider butonlarını mobilde küçült ve ortala */
    .slider-bottom-button {
        transform: scale(0.85);
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .slider-catalog-button {
        display: flex;
        justify-content: center;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }
    
    /* Navigation butonlarını mobilde ayarla */
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        padding: 0.5rem !important;
    }
    
    /* Mobil ve Masaüstü slider görünürlük kontrolü */
    .mobile-only-slide {
        display: block !important;
    }
    
    .desktop-only-slide {
        display: none !important;
    }
    
    /* About Content Section - Mobil Ayarları */
    section .absolute.bottom-\[100px\] {
        position: relative !important;
        bottom: auto !important;
        padding: 2rem 1rem !important;
        margin-top: -30px;
    }
    
    section .absolute.bottom-\[100px\] .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Logo boyutunu küçült ve ortala */
    section .absolute.bottom-\[100px\] .mb-10 {
        margin-bottom: 1.5rem !important;
        display: flex;
        justify-content: center;
    }
    
    section .absolute.bottom-\[100px\] img[alt="Pump Technology"] {
        height: 2.5rem !important;
    }
    
    /* Decorative line mobilde küçült ve ortala */
    section .absolute.bottom-\[100px\] .mt-20 {
        margin-top: 1.5rem !important;
        justify-content: center !important;
    }
    
    section .absolute.bottom-\[100px\] .mt-20 .w-10 {
        width: 1.5rem !important;
    }
    
    section .absolute.bottom-\[100px\] .mt-20 img[alt="Icon"] {
        width: 1.5rem !important;
        height: 1.5rem !important;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    
    section .absolute.bottom-\[100px\] .mt-20 .flex-grow {
        max-width: 8rem;
    }
    
    /* Grid içeriği mobilde ayarla */
    section .absolute.bottom-\[100px\] .mt-16 {
        margin-top: 2rem !important;
        gap: 2rem !important;
    }
    
    /* Sol taraf - metin içeriği ortala */
    section .absolute.bottom-\[100px\] .grid > div:first-child {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Metin içeriği mobilde ayarla */
    section .absolute.bottom-\[100px\] .text-3xl {
        font-size: 1.125rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }
    
    section .absolute.bottom-\[100px\] .mb-10 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Buton mobilde küçült */
    section .absolute.bottom-\[100px\] a[href="hakkimizda.php"] {
        transform: scale(0.85);
    }
    
    section .absolute.bottom-\[100px\] a[href="hakkimizda.php"] .h-16 {
        height: 3rem !important;
    }
    
    section .absolute.bottom-\[100px\] a[href="hakkimizda.php"] span {
        font-size: 0.875rem !important;
    }
    
    /* Görseller mobilde ayarla */
    section .absolute.bottom-\[100px\] img[alt="Pump"] {
        max-width: 260px !important;
    }
    
    section .absolute.bottom-\[100px\] img[alt="Pump"].absolute {
        height: 160px !important;
        right: 1rem !important;
        top: -0.75rem !important;
    }
    
    /* Alt açıklama metni mobilde küçült */
    section .absolute.bottom-\[100px\] .mt-20:last-child {
        margin-top: 2rem !important;
    }
    
    section .absolute.bottom-\[100px\] .text-gray-400 {
        font-size: 0.875rem !important;
        text-align: center !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        height: 120vh;
    }
    
    .hero-slider .swiper-wrapper {
        height: 120vh;
    }
    
    .hero-slider .swiper-slide {
        height: 120vh !important;
        background-position: center center !important;
    }
}

@media (min-width: 769px) {
    /* Masaüstü slider görünürlük kontrolü */
    .mobile-only-slide {
        display: none !important;
    }
    
    .desktop-only-slide {
        display: block !important;
    }
}


@media screen and (max-width: 1600px) and (min-width: 1000px) {
    .hero-slider .swiper-slide .slide-title {
        font-size: 25px !important;
    }
    .hero-slider .swiper-slide  .container {
        padding-top: 100px !important;
    }
    .hero-slider .swiper-slide .slider-bottom-button > div:first-child {
        height: 3rem !important;
        width: 3rem !important;
    }

    .custom-navigation {
        bottom: 730px !important;
    }
    .item1 {
        left: 540px !important;
        top: 130px !important;
    }
    .item2 {
        right: 200px !important;
        top: 200px !important;
    }
    .item3 {
        left: 500px !important;
        top: 475px !important;
    }

    .pump-tech {
        margin-bottom: -60px !important;

    }
}
