* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MarkPro';
}

:root {
    --primary-color: #F58220;
    --secondary-color: #2262a0;
    --text-color: #333;
}

body {
    background-color: #ffffff;
}


a {
    text-decoration: none;

}

.round-container {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    overflow: hidden
}


@media (max-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: none;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: calc(var(--bs-gutter-x) * .8);
        padding-left: calc(var(--bs-gutter-x) * .8);
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

@media (max-width: 1366px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (min-width: 1201px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1424px;
    }
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    text-align: center;
}

.loader-wrapper .logo {
    width: 160px;
    height: 160px;

    animation: logoFloat 2s ease-in-out infinite;
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 190px;
    border: 3px solid rgb(245 130 32);
    border-top: 3px solid #015aaa;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loading-text {
    color: black;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.dots {
    display: inline-block;
    margin-left: 5px;
}

.dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #015aaa;
    margin: 0 2px;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

/* Animasyonlar */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 80px;
        height: 80px;
    }

    .spinner-ring {
        width: 110px;
        height: 110px;
    }

    .loading-text {
        font-size: 0.9rem;
    }
}

/* Header Styles */
header {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.5);
    padding: 10px 0;
}

.contact-info {
    flex: 2;
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-info a i {
    margin-right: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex: 1;
}

.social-icons a {
    color: #1877f2;
    font-size: 20px;
}

/* Navigation Styles */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    flex: 1;
    max-width: 205px;
}

.logo img {
    width: 100%;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.search-box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box input {
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ccc;
    width: 200px;
    outline: none;
}

.online-payment-btn {
    background-color: #F58220;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    margin-left: 15px;
    cursor: pointer;
    font-weight: bold;
}

/* Mevcut stillerinize eklenecek yeni CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 100;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    font-weight: 600;
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.dropdown-toggle::after {
    display: none;
}

/* ======== YENİ HAMBURGER MENÜ CSS'İ - SADECE BUNLARI EKLEYİN ======== */

/* Hamburger Butonu - Sadece mobilde görünür */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger aktif durumu */
.hamburger-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobil Menü İçeriği */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    right: 0;
}

/* Mobil Menü Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-menu-header .logo img {
    height: 40px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Mobil Menü Navigation */
.mobile-nav-menu {
    padding: 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* Mobil Dropdown */
.mobile-dropdown-content {
    display: none;
    background: #f8f9fa;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 40px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-content a:hover {
    background: #e9ecef;
    color: #007bff;
}

/* Mobil Dropdown Arrow */
.mobile-dropdown-arrow {
    transition: transform 0.3s;
}

.mobile-dropdown-arrow.active {
    transform: rotate(180deg);
}

/* Mobil Arama ve Ödeme */
.mobile-search-section {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-search-section input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    margin-bottom: 15px;
    font-size: 14px;
}

.mobile-payment-btn {
    width: 100%;
    background-color: #F58220;
    color: white;
    padding: 12px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

/* Mobil İletişim */
.mobile-contact-section {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-contact-section h5 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-contact-link:hover {
    color: #007bff;
}

.mobile-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.mobile-social-links a {
    color: #1877f2;
    font-size: 20px;
    transition: color 0.3s;
}

.mobile-social-links a:hover {
    color: #007bff;
}

/* ======== MOBİL RESPONSIVE KURALLAR ======== */
@media (max-width: 991px) {
    /* Mevcut menünüzü gizle */
    .nav-content {
        display: none;
    }

    /* Hamburger butonunu göster */
    .hamburger-menu-btn {
        display: flex;
    }

    /* Nav container'ı mobil için düzenle */
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Logo boyutunu mobilde küçült */
    .logo {
        max-width: 150px;
    }
}

@media (min-width: 992px) {
    /* Desktop'ta hamburger menüyü gizle */
    .hamburger-menu-btn {
        display: none !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* tam ekran */
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}


.hero-slider .hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .hero-slides {
    display: flex;
    width: 300%;
    /* 3 slide için */
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.hero-slider .hero-slide {
    width: 33.333%;
    /* Her slide container'ın 1/3'ü */
    height: 100%;
    position: relative;
}

.hero-slider .hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider .hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
}

.hero-slider .hero-slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider .hero-slide-content p {
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slider .hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider .hero-slider-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.hero-slider .hero-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Navigation arrows */
.hero-slider .hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-slider .hero-slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .hero-slider-prev {
    left: 20px;
}

.hero-slider .hero-slider-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }

    .hero-slider .hero-slide-content h2 {
        font-size: 1.8em;
    }

    .hero-slider .hero-slide-content p {
        font-size: 1em;
    }

    .hero-slider .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-slider .hero-slider-prev {
        left: 10px;
    }

    .hero-slider .hero-slider-next {
        right: 10px;
    }
}

.hero {
    margin-top: 20px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 5%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #F58220;
}

/* Content Sections */
.content-section {
    display: flex;
    margin: 50px 0;
    gap: 30px;
}

.story-section {
    background-image: linear-gradient(135deg, rgba(0, 90, 170, 0.8), rgba(0, 90, 170, 0.9)), url(../img/story-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    border-radius: 40px;
    padding: 40px;
    color: white;
    width: 60%;
    display: flex;
    height: 29vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-text {
    position: relative;
    z-index: 2;
}

.story-text h2 {
    font-size: 49px;
    margin-bottom: 0px;
    font-weight: 900;
}

.arrow-icon {
    right: 30px;
    bottom: 30px;
    color: #F58220;
    font-size: 60px;
}

.arrow-icon .story-arrow {
    right: 30px;
    bottom: 30px;
    color: #F58220;
    font-size: 60px;
}

.products-display {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bags-1 {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    height: 42vh;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .story-section,
    .products-display {
        width: 100%;
    }
}

/* İnformation Section */
.information-head-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.information-head-icon {
    font-size: 35px;
}

.information-head-text {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}

.information-head-text-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.information-head-text-content span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #C8C7C6;
}

.information-head-arrow hr {
    width: 31vw;
    height: 3px;
    background: #BFBFBF;
}

.info-header {
    margin-bottom: 40px;
    position: relative;
}

.info-header:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 1px;
    background-color: #ddd;
    transform: translateY(-50%);
}

.info-title {
    color: #e87e33;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.info-subtitle {
    color: #aaa;
    font-size: 24px;
}

.info-icon {
    color: #2262a0;
    font-size: 50px;
    margin-right: 15px;
}

.cow-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
}

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

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2d2d2d57;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0px 45px;
    color: white;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.card-link {
    color: white;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    bottom: 30px;
}

.card-link .arrow-icon {
    margin-left: 10px;
    right: 30px;
    bottom: 30px;
    color: #F58220;
    font-size: 60px;
    margin-bottom: 14px;
}

.large-card {
    height: 60vh;
}

.small-card {
    height: 27vh;
}

/* Ensuring the cards in the right column have equal height */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.right-column .row {
    flex: 1;
}


.categories-container {
    padding: 30px 0;
}

.category-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.category-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.category-subtitle {
    color: white;
    font-size: 19px;
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 10px;
}

.category-link .circle-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-card:hover .circle-arrow {
    background-color: #e87e33;
    color: white;
}

#buyukbas {
    background-color: #075394;
}

#kucukbas {
    background-color: #7c94b6;
}

#kanatli {
    background-color: #b25d3a;
}

#denge-blok {
    background-color: #3a7250;
}

.cards-container {
    padding: 30px 0;
}

.info-card {
    border-radius: 40px;
    height: 36vh;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 40px;
    transition: transform 0.3s ease-in-out;
}

.info-card:hover {
    /* transform: translateY(-5px); */
}

.catalog-card {
    background: linear-gradient(56deg, #1587ED, #005AAA);
    color: white;
    height: 100%;
}

.dealers-card {
    color: white;
    justify-content: flex-end;
}

.dealers-card .card-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: -27px;
    display: flex;
    align-items: center;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-icon {
    margin-left: 15px;
    margin-bottom: 11px;
}

.catalog-img {
    position: absolute;
    top: 31%;
    right: 64px;
    transform: translateY(-50%) rotate(15deg);
    width: 315px;
    transition: transform 0.3s ease-in-out;
}

.info-card:hover .catalog-img {
    transform: translateY(-50%) rotate(10deg) scale(1.05);
}

.turkey-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
}

.turkey-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/turkey-bg.png') no-repeat center center;
    border-radius: 35px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.map-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

/* Rastgele konumlandırılmış noktalar */
.map-dot:nth-child(1) {
    top: 30%;
    left: 25%;
    animation-delay: 0.1s;
}

.map-dot:nth-child(2) {
    top: 40%;
    left: 35%;
    animation-delay: 0.3s;
}

.map-dot:nth-child(3) {
    top: 25%;
    left: 45%;
    animation-delay: 0.5s;
}

.map-dot:nth-child(4) {
    top: 50%;
    left: 55%;
    animation-delay: 0.7s;
}

.map-dot:nth-child(5) {
    top: 35%;
    left: 65%;
    animation-delay: 0.9s;
}

.map-dot:nth-child(6) {
    top: 45%;
    left: 75%;
    animation-delay: 1.1s;
}

.map-dot:nth-child(7) {
    top: 60%;
    left: 30%;
    animation-delay: 1.3s;
}

.map-dot:nth-child(8) {
    top: 55%;
    left: 80%;
    animation-delay: 1.5s;
}

.map-dot:nth-child(9) {
    top: 30%;
    left: 85%;
    animation-delay: 1.7s;
}

.map-dot:nth-child(10) {
    top: 70%;
    left: 50%;
    animation-delay: 1.9s;
}

.map-dot:nth-child(11) {
    top: 20%;
    left: 15%;
    animation-delay: 2.1s;
}

.map-dot:nth-child(12) {
    top: 65%;
    left: 20%;
    animation-delay: 2.3s;
}

.card-content-2 {
    position: relative;
    z-index: 3;
}

.card-content-2 a {
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .info-card {
        margin-bottom: 20px;
        height: 250px;
    }

    .catalog-img {
        width: 150px;
        right: 30px;
    }
}

@media (max-width: 767px) {
    .card-title {
        font-size: 28px;
    }
}

.video-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin: 30px 0;
    height: 400px;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    padding-left: 9%;
}

.video-content {
    color: white;
    z-index: 2;
}

.video-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.1;
}

.video-subtitle {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.play-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-inner {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    color: #2262a0;
    font-size: 30px;
    margin-left: 5px;
    /* Oynat iconunu hafifçe sağa kaydırır */
}

/* Video modal styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 80%;
    max-width: 1000px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #e87e33;
}

.video-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

@media (max-width: 768px) {

    .video-title,
    .video-subtitle {
        font-size: 36px;
    }

    .play-btn {
        width: 80px;
        height: 80px;
        top: 75%;
    }

    .play-btn-inner {
        width: 60px;
        height: 60px;
    }

    .video-modal-content {
        width: 95%;
    }
}

.bayi-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin: 70px 0;
    height: 450px;
}

.bayi-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bayi-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, rgba(34, 98, 160, 0.8) 0%, rgba(34, 98, 160, 0.7) 50%, rgba(34, 98, 160, 0) 100%);
    z-index: 2;
}

.bayi-overlay {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.bayi-content {
    padding-left: 5%;
    width: 40%;
    color: white;
}

.bayi-subtitle {
    font-size: 30px;
    font-weight: 500;
}

.bayi-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.bayi-product-display {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translateY(-50%);
    z-index: 4;
    width: 30%;
    display: flex;
    justify-content: center;
}

.product-bags {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.bayi-container:hover .product-bags {
    transform: translateY(-10px);
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.3s ease;
    z-index: -1;
}

.detail-btn:hover {
    color: #2262a0;
}

.detail-btn:hover::before {
    left: 0;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.detail-btn:hover .btn-icon {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .bayi-content {
        width: 50%;
    }

    .bayi-title {
        font-size: 44px;
    }

    .bayi-product-display {
        left: 60%;
        width: 35%;
    }
}

@media (max-width: 767px) {
    .bayi-content {
        width: 100%;
        padding-right: 15px;
        text-align: center;
    }

    .bayi-title {
        font-size: 36px;
    }

    .bayi-product-display {
        display: none;
    }

    .detail-btn {
        margin: 0 auto;
    }
}

/* Footer Styling */
footer {
    margin-top: 50px;
}

.footer-menu {
    position: relative;
}

.footer-top {
    background-color: white;
    padding: 45px 0 50px;
}

.footer-logo img {
    width: 280px;
    height: auto;
}

.footer-logo p {
    color: #e87e33;
    font-style: italic;
    margin-top: 5px;
    font-size: 14px;
}

.footer-menu h4 {
    color: #000;
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 15px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 8px;
}

.footer-menu ul li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: #2262a0;
}

.social-icons a {
    color: #2262a0;
    font-size: 18px;
    margin-right: 10px;
}

.year-display {
    text-align: right;
    margin-top: 20px;
}

.year-text {
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
}

.year-text .year {
    color: #2262a0;
}

.year-text .yil {
    color: #e87e33;
}

.year-subtitle {
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}

.product-showcase {
    text-align: right;
}

.product-showcase img {
    max-width: 100%;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(45deg, #1587ED, #005AAA);
    color: white;
    padding: 30px 40px 40px 40px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer-bottom .slogan {
    font-size: 24px;
    font-weight: 700;
    border-bottom: 1px solid white;
    margin-bottom: 15px;
}

.footer-bottom .copyright {
    font-size: 16px;
    font-weight: 400;
}

.footer-bottom a {
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #e87e33;
}

.footer-bottom .separator {
    margin: 0 8px;
    border-left: 2px solid rgb(255 255 255 / 90%);
    height: 42px;
    display: inline-block;
    vertical-align: middle;
}

.copyright-links-top > a,
.copyright-links-top > span {
    font-size: 15px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 991px) {

    .year-display,
    .product-showcase {
        text-align: left;
        margin-top: 30px;
    }

    .footer-bottom .copyright {
        text-align: left;
        margin-top: 15px;
    }
}

.feature-divider {
    position: absolute;
    top: 0;
    right: 2px;
    width: 2px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.08);
    transition: transform 0.45s ease;
}

.feature-item:hover .feature-divider {
    transform: translateY(16px);
}

.feature-grid .feature-item:nth-child(5n) .feature-divider {
    display: none;
}

.footer-urun {
    position: relative;
}

.footer-urun img {
    height: auto;
    width: 30vw;
    position: absolute;
    left: 20px;
    bottom: -139px;
    overflow: hidden;
}

.footer-menu-2 {
    display: flex;
    justify-content: space-between;
}

.weather-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: url('../img/agricultural-weather.jpg') center center / cover no-repeat;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}


.weather-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.weather-pattern {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 25%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.weather-card .card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.weather-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.weather-card .card-title {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.weather-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.weather-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.weather-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.weather-emoji {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.weather-value {
    font-weight: 600;
    color: #ffffff;
}

.weather-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.loading {
    opacity: 0.7;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .weather-card {
        height: 100%;
    }

    .card-content {
        padding: 0px 38px;
    }

    .weather-details {
        grid-template-columns: 1fr;
    }

    .info-title {
        color: #e87e33;
        font-size: 25px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .info-icon svg {
        width: 33px;
    }

    .card-title {
        font-size: 20px;
    }

    .info-header:after {
        display: none;
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        padding-left: 8px !important;
        padding-right: 5px !important;
    }

    .story-text h2 {
        font-size: 35px;
        margin-bottom: 0px;
        font-weight: 900;
    }

    .arrow-icon .story-arrow {
        font-size: 50px;
    }

    .hero-text p {
        text-align: unset !important;
    }
    .dealers-map img {
        width: 109vw;
        height: 23vh;
        object-fit: cover;
        position: relative;
        right: 45px;
    }
    .catalog-img {
        width: 200px;
        right: 103px;
        top: 22%;
    }
}

/* Borsa Kartı CSS'i - HTML head bölümüne ekleyin */
.market-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #e87e34 0%, #e87e34 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    height: 100%;
    min-height: 320px;
}


.market-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.market-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
    animation: rotateReverse 25s linear infinite;
}

@keyframes rotateReverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.market-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.market-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.market-title {
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.market-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
}

.market-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.market-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.market-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.market-product {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.market-emoji {
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.market-price {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
}

.market-change {
    font-size: 12px;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 600;
}

.market-up {
    background: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.market-down {
    background: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.market-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.market-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .market-content {
        padding: 20px;
    }

    .market-title {
        font-size: 18px;
    }

    .market-items {
        gap: 10px;
    }

    .bayi-bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100%;
        background: linear-gradient(90deg, rgba(34, 98, 160, 0.8) 0%, rgba(34, 98, 160, 0.7) 50%, rgba(34, 98, 160, 0) 100%);
        z-index: 2;
    }

    .feature-divider {
        display: none;
    }

    .footer-menu-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        justify-content: flex-start;
        flex: 1;
    }

    .footer-bottom {
        background: linear-gradient(45deg, #1587ED, #005AAA);
        color: white;
        padding: 30px 10px 40px 4px;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .footer-bottom-1 {
        flex-direction: column;
    }

    .footer-bottom .separator {
        display: none;
    }

    .footer-urun {
        display: none;
    }
}

.info-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.market-status {
    background: linear-gradient(135deg, #e87e34, #e87e34);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}