﻿:root {
    --color-primary-green: #51833a;
	--color-primary-dark: #3c4556;
	--color-primary-text: #413f4c;
	--color-secondary-blue: #5a707e;
    --color-dark-blue: #3c4556;
    --color-text-gray: #413f4c;
    --color-light-bg: #fff8eb;
    --color-white: #ffffff;
    --color-dark-bg: #5a707e;
    --color-light-yellow: #fffcca;
	--color-light-gray: #ccc;
    --color-off-white: #f9f5ec;
	--color-grey-text: #797979;
	--color-border-light: #d9d9d9;
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-montserrat);
    color: var(--color-text-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
	line-height:0;
}
body > * {
    line-height: normal;
}

.container {
    width: 100%;
    max-width: 1274px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    background-color: var(--color-primary-green);
    color: var(--color-off-white);
    font-family: var(--font-bebas);
    font-size: 26px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    text-align: center;
    height: 55px;
    box-sizing: border-box;
    white-space: nowrap;
	border-radius:10px;
	letter-spacing: 1px;
	font-weight:400;
}

/* CSS for section section:header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 55px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
	position:relative;
}
.header-logo img {
    width: 218px;
    height: auto;
}
.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.header-nav ul li.level-0 ul.level-0 { display:none;}
.header-nav a {
    font-family: var(--font-poppins);
    font-size: 18px;
    color: var(--color-dark-blue);
    font-weight: 600;
	letter-spacing: -1px;
}

.headerDesktopMenuContainer .headerMenuMain > li.level-0 {
  position: relative;
}

.headerDesktopMenuContainer .headerMenuMain > li.level-0::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.headerDesktopMenuContainer ul.level-0.subMenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background:rgba(81, 131, 58, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(81, 131, 58, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(60, 69, 86, 0.12);
  min-width: 240px;
  padding: 20px 10px;
  z-index: 9999;
}
.headerDesktopMenuContainer ul.level-0.subMenu ul.level-0.subMenu { display:none !important;}
.headerDesktopMenuContainer ul.level-0.subMenu:hover {
  display: flex !important;
}

.headerDesktopMenuContainer .topMenuBigTitle {
  display: none;
}

.headerDesktopMenuContainer .topMenuBorder {
  display: none;
}
.headerDesktopMenuContainer ul.level-0.subMenu li.level-1 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.headerDesktopMenuContainer ul.level-0.subMenu li.level-1 > a {
  display: flex;
  align-items: center;
  padding: 7px 12px !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1.2 !important;
}
.headerDesktopMenuContainer ul.level-0.subMenu li.level-1 > a span { padding:0;}
.headerDesktopMenuContainer ul.level-0.subMenu li.level-1 > a:hover {
  background: #f0f7eb;
  color: var(--color-primary-green);
}

.headerDesktopMenuContainer ul.level-0.subMenu li.level-1 > a i.fas {
  display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 27px;
}
.headerSearchContainer {
    width: 0;
    opacity: 0;
    padding: 0 20px;
    box-sizing: border-box;
	background-color:var(--color-primary-green);
    /* Bu en önemli kısım: Hangi özelliklerin ne kadar sürede değişeceğini belirtir */
    transition: max-height 0.4s ease, width 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
	margin:0 0 20px 0;
	position:absolute;
	display:none;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
}

.search-overlay.is-open {
    display: block;
}
.headerSearch { display:flex; align-items:center; gap:10px;}
.closeSearch {position: absolute; top: -15px; right: -15px; color: #fff; background-color:var(--color-primary-green); padding:10px 15px; border-radius: 100%; cursor:pointer; }
.headerSearch .btn { background:var(--color-white); color:var(--color-primary-green); cursor:pointer; }
.ui-widget-content { background:var(--color-white);}
.ui-widget-content li { border-bottom:1px solid var(--color-text-gray); padding:10px; cursor:pointer;}
.ui-widget-content li:hover { background:var(--color-text-gray); color:var(--color-white)}
.ui-widget-content li img { display:none;}

/* 2. Açık hali (JavaScript ile bu sınıf eklenecek) */
.headerSearchContainer.is-open {
    width:calc(100% - 40px);
    opacity: 1;
    padding: 15px 20px;
	z-index:99999;
	display:block;
}
.form-control { width:calc(100% - 30px); padding:15px;}
.login-button {
  display: block;
  padding: 10px 20px;
  background-color: var(--color-primary-green);
  color: var(--color-white);
  font-family: var(--font-bebas);
  font-size: 20px;
  font-weight: 400;
  transition: background-color 0.3s;
}

.login-button:hover {
  background-color: #457231;
}
.login-button a:hover { text-decoration:underline;}
.search-icon { cursor:pointer;}
.search-icon img {
    width: 16.5px;
}

.hamburger {
    display: none;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

@media (max-width: 1200px) {
 .hamburger {
        display: block;
		cursor:pointer;
    }
	.header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 999;
        transition: left .3s ease;
        overflow-y: auto;
		padding:80px 0 0 0;
    }

    .header-nav.active {
        left: 0;
    }
	.header-nav ul { flex-direction:column; gap:0;}
    .headerMenuMain {
        display: block;
    }

    .headerMenuMain > li > a {
        display: flex;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

    /* SUB MENÜLER */
    .headerMenuMain ul {
        display: none;
        position: static;
        background: #f9f9f9;
    }

    .headerMenuMain li.open > ul {
        display: block;
    }

    .headerMenuMain ul li a {
        padding: 12px 20px;
        font-weight: normal;
    }

    /* SEARCH OVERLAY'I KULLANALIM */
    .search-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 998;
    }

    .search-overlay.active {
        display: block;
    }
}
@media (max-width: 768px) {
    .site-header {
        padding:20px 0;
		position:relative;
    }
	.headerSearchContainer {
		margin:40px 0 0 0;
		}
    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        flex-grow: 1;
    }
    .header-logo img {
        width: 150px;
    }
    .login-btn {
        font-size: 18px;
        padding: 6px 16px;
        height: 40px;
    }
}
@media (max-width: 480px) {
	.header-actions {
		gap:10px;
		margin:0;
		}
	.login-button, .btn { 
	padding:8px 12px;
	font-size:16px;
	}
	.hamburger {
		width:18px;
		}
		 .header-logo img {
        width: 110px;
    }
	
}
/* HERO SECTION */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* OWL WRAPPER */
#home-hero {
    position: relative;
    width: 100%;
}

/* SLIDE */
#home-hero .heroItem {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

/* MEDIA */
#home-hero .heroMedia {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#home-hero .heroImage,
#home-hero .heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.heroVideo {
    pointer-events: none;
}
/* OVERLAY */
#home-hero .heroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background:linear-gradient(180deg, hsla(0, 0%, 100%, 0.7), hsla(100, 0%, 0%, .1));
	pointer-events: none;
}

/* CONTENT */
.heroContentContainer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.heroContentContainer .heroContent {
    position: relative;
    z-index: 2;
}

/* TITLE */
.heroContentContainer .heroTitle {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 90px;
    line-height: 1;
    color: var(--color-dark-blue);
    margin-bottom: 0;
}

/* SUBTITLE */
.heroContentContainer .heroSubtitle p {
    font-family: var(--font-montserrat);
    font-size: 30px;
    color: var(--color-text-gray);
    margin-top: 0;
}

/* BUTTON */
.heroContentContainer .heroBtn {
    margin-top: 26px;
    width: 137px;
}

/* ACTION BAR */
.hero-actions-bar {
    position: absolute;
    bottom: 20px;
    z-index: 5;
	width:100%;
}
.hero-actions-bar-content {
	display: flex;
    align-items: center;
	background: rgba(81, 131, 58, 0.7);
	border:1px solid #51833a;
	border-radius:10px;
    padding:10px 20px;
	justify-content:center;
	 }
.hero-action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-light-yellow);
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 20px;
	padding:0 30px;
	 
}
.hero-action-item:not(:last-child) {border-right:1px solid var(--color-light-yellow);}
.hero-action-item img {
    width: 54px;
    height: 54px;
}

/* OWL NAV */
#home-hero .owl-nav {
    margin: 0;
}

#home-hero .owl-nav button.owl-prev,
#home-hero .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 54px;
    height: 54px;
    border-radius: 100% !important;
    background: rgba(0,0,0,0.25) !important;
    color: #fff !important;
    font-size: 28px !important;
}

#home-hero .owl-nav button.owl-prev {
    left: 20px;
}

#home-hero .owl-nav button.owl-next {
    right: 20px;
}

/* OWL DOTS */
#home-hero .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 6;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .heroContentContainer .heroTitle {
        font-size: 54px;
    }
}

@media (max-width: 1024px) {
    .hero-actions-bar {
		width:calc(100% - 40px);
		margin:0 20px;
    }
	.hero-action-item { padding:0 20px;}

    .heroContentContainer .heroTitle {
        font-size: 34px;
    }

    .heroContentContainer .heroSubtitle {
        font-size: 22px;
    }

    .heroContentContainer .heroBtn {
        margin-top: 5px;
    }

    #home-hero .heroItem {
        min-height: 550px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        align-items: center;
    }
	.hero-actions-bar-content { align-items:stretch;}
	
	.hero-action-item {flex-direction:column;flex:1;}

    .heroContentContainer {
        justify-content: center;
        text-align: center;
    }

    .heroContentContainer .heroTitle {
        font-size: 32px;
    }

    .heroContentContainer .heroSubtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-actions-bar {
        position: static; 
    }
	.hero-actions-bar-content {
		flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 20px;
        box-sizing: border-box;
        align-items: center;
		margin:20px 0;
		}
	.hero-action-item { font-size:14px; padding:20px; text-align:center; align-items:center; width:calc(100% - 40px);}
	.hero-action-item:not(:last-child) {border-bottom:1px solid var(--color-light-yellow); border-right:none;}

    .heroContentContainer .heroBtn {
        height: auto;
        width: auto;
    }

    #home-hero .heroItem {
        min-height: 420px;
    }
}


/* CSS for section section:services */
.services-section {
    padding-top: 128px; /* 783 - 690 + 35px from hero overlap */
    padding-bottom: 93px;
    position: relative;
	background:var(--color-light-bg) url(/tr/images/common/14373a363288e9757019e71ce6834fad341e6ac3.png) bottom right no-repeat;
	background-size:auto 540px;
}
.section-title {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 50px;
    color: var(--color-dark-blue);
    text-align: center;
}
.section-subtitle {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    max-width: 808px;
    margin: 12px auto 0;
}
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 49px;
}
.service-card {
    position: relative;
    padding-left: 45px;
}
.card-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
}
.card-title {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-primary-green);
    margin-bottom: 14px;
}
.card-description {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 29px;
}
.card-link {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-primary-green);
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-divider {
    border: 0;
    border-top: 1px solid #ddd8cf;
    margin: 63px 0;
}
.finance-services {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.finance-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.finance-item {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap:15px;
}
.finance-bg-image {
    position: absolute;
    right: -323px; /* Bleed out */
    top: -216px; /* y=1048 - y=1264 */
    width: 835px;
    z-index: 0;
}
@media (max-width: 1200px) {
    .finance-bg-image { display: none; }
    .finance-list { width: 100%; }
}
@media (max-width: 768px) {
    .services-section { padding-top: 80px; padding-bottom: 50px; }
    .service-cards-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
	.service-cards-grid { margin-top:30px;}
}
@media (max-width: 480px) {
	.services-section { padding-top: 30px; padding-bottom: 50px; }
    .section-title, h2.blog-heading, h2.campaign-title { font-size:36px; }
	h3.campaign-subtitle { font-size:24px;}
	h3.card-title { font-size:20px;}
}

/* CSS for section section:campaigns */
.campaigns-section .item {
    background-color: var(--color-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
    overflow: hidden;
}
.campaign-bg-left, .campaign-bg-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 25%;
}
.campaign-bg-left { left: 0; }
.campaign-bg-right { right: 0; }
.campaign-bg-left img, .campaign-bg-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    text-align: center;
	width:50%;
    max-width: 554px;
    padding: 73px 20px;
}
.campaign-title {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 40px;
}
.campaign-subtitle {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 22px;
}
.campaign-description {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}
.campaign-btn {
    width: 137px;
}
.campaigns-section .owl-dots { position: absolute;z-index: 9; bottom: 20px; display: flex; align-items:center; justify-content: center; gap:5px; width: 100%;}
.campaigns-section .owl-dot.active {  width:15px; height:15px;}
.campaigns-section .owl-dot { background:#fff; border-radius:100%; width:5px; height:5px;}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}
.slider-arrow.prev { left: 25%; }
.slider-arrow.next { right: 25%; }

@media (max-width: 1200px) {
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }
}
@media (max-width: 768px) {
    .campaign-bg-left, .campaign-bg-right { display: none; }
    .campaign-content { padding: 50px 20px; }
    .campaign-description { margin-bottom: 20px; }
    .campaign-slider-dots { margin-top: 60px; }
}
@media (max-width: 640px) {
    .campaign-content { width:auto;}
}
@media (max-width: 640px) {
   .campaigns-section .owl-nav { display:none !important;}
}

/* CSS for section section:news */
.news-section {
    background-color: var(--color-white);
    padding: 72px 0 92px;
}
.news-grid {
    display: flex;
    gap: 60px;
    margin:0;
}
.news-article {
	display: flex;
  flex-direction: column;
  flex: 1;
}
.news-grid > article:first-of-type { border-right: 1px solid #bababa; padding:0 60px 0 0;}
.news-title {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-primary-green);
    margin-bottom: 8px;
}
.news-date {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}
.news-excerpt {
    font-size: 18px;
    line-height: 26px;
}
.news-read-more {
    display: inline-block;
	margin:0 0 0 30px;
}
.all-news-link {
    display: block;
    text-align: center;
    margin-top: 49px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-primary-green);
	text-decoration:underline;
}

.news-grid-detail {
    flex-direction: column;
    display: flex;
    gap: 30px;
}

.news-grid-detail > article, .news-grid-detail > article:first-of-type {
	border-right: none;
	border-bottom: 1px solid #bababa;
	padding: 0 0 30px;
	}
	
	.news-grid-detail > article:last-of-type {
	border: none;
	}

.news-grid-detail .news-title {
    display: flex;
    height: 100%;
    align-items: center;
}

@media (max-width: 1024px) {
    .news-grid { gap: 40px; }
}
@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; border-right: none; padding-right: 0; margin:40px 0 0 0;  }
    .news-read-more { margin-left: auto; margin-right: 0; }
}

@media (max-width: 480px) {
	.news-section { padding:40px 0;}
    .news-grid { flex-direction:column; }
	.news-grid > article:first-of-type { border-right:none; border-bottom: 1px solid #bababa; padding:0 0 30px 0;}
}
/* CSS for section section:blog */
.blog-section {
    background-color: var(--color-light-bg);
    padding: 118px 0 118px;
}
.blog-container {
    display: flex;
    align-items: center;
    gap: 108px;
}
.blog-content {
    flex: 1;
}
.blog-heading {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 50px;
    color: var(--color-dark-blue);
    margin-bottom: 14px;
}
.blog-title {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-primary-green);
    margin-bottom: 14px;
    max-width: 502px;
}
.blog-excerpt {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 54px;
    max-width: 469px;
}
.blog-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.blog-btn {
    width: 137px;
}
.all-posts-link {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-primary-green);
	text-decoration:underline;
}
.blog-image {
    flex-shrink: 0;
    width: 620px;
    height: 350px;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .blog-container { flex-direction: column; }
    .blog-image { width: 100%; }
}
@media (max-width: 640px) {
    .blog-section { padding:40px 0;}
	.blog-container {gap:40px;}
}

/* CSS for section section:hero */
.hero-banner {
  background-color: var(--color-secondary-blue);
  padding: 48px 0 34px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-size: 14px;
}

.breadcrumbs img {
  width: 20px;
  height: 16px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}

/* CSS for section section:main-content */
.main-content-section {
  padding: 65px 0 80px;
}

.main-content-container {
  display: grid;
  grid-template-columns: 1fr 322px;
  gap: 60px;
  align-items: start;
}

.content-title {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-primary-text);
  margin-bottom: 30px;
}

.content-text {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary-text);
  display: flex;
  flex-direction: column;
}
.content-text p { padding:0 0 30px 0;}
.content-text p a { font-weight:bold;}
.content-text p iframe { width:100%; min-height:400px;}
.content-text ul,.content-text ol{
    margin: 0 0 25px;
    padding: 0;
    position: relative;}
.content-text li {
    list-style: none;
    line-height: 30px;
    padding: 5px;
}
.content-text li:before {
	content: '';
    width: 10px;
    background:var(--color-primary-green);
    display: inline-block;
    height: 10px;
    margin-right: 10px;
    top: -1px;
    position: relative;
}
.content-subtitle {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 30px;
  color: var(--color-primary-text);
  margin-top: 77px;
  margin-bottom: 47px;
}
.left-image { float:left; margin:0 20px 20px 0;}
.content-image {
  width: 800px;
  height: 537px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 39px;
}
.detailContentBtnContainer { display:flex; gap:10px; flex-wrap:wrap; justify-content:center;}
.detailContentBtnContainer a { flex:1; display:flex; }
.detailContentBtnContainer a span.btn { flex:1;}
.ledis-search01 { width:100%;}
.pager, .pagination { display:flex; align-items:center; justify-content:center; gap:10px; margin:40px auto;}
.pager a, .pagination li a { padding:5px 15px; background:var(--color-dark-bg); color:var(--color-white);}
.pager a.selected, .pagination li.active a { background:var(--color-primary-green);}
.pager a:hover, .pagination li a:hover { opacity:0.8;}
.pagination li { list-style:none;}

.product-detail-title {
    background: #51833A;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding: 20px 40px !important;
    font-size: 24px;
    margin-bottom: 25px;
    margin-top: 50px;
}

.sidebar {
  position: sticky;
  top: 40px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-secondary-blue);
  padding: 23px 28px;
}

.sidebar-header img {
  width: 18px;
  height: 33px;
}

.sidebar-header h4 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
}

.sidebar-nav {
  background-color: var(--color-white);
  border: 1px solid var(--color-primary-text);
  padding: 30px 0;
  margin:20px 0 0 0;
}
.sidebar-nav ul.leftMenuLedisXSLT {
	  padding:0;
  margin:0 30px;
}
.sidebar-nav ul li.level0 { display:none !important;}
.sidebar-nav ul {
  display: flex;
  flex-direction: column;
  padding:0;
  margin:0;
  }
.sidebar-nav ul li { list-style:none;}
.sidebar-nav a {
  display: block;
  font-family: var(--font-montserrat);
  font-size: 16px;
  line-height: 120%;
  padding:10px 0;
  color: var(--color-primary-text);
  border-bottom: 1px solid var(--color-primary-text);
  transition: background-color 0.3s;
}

.sidebar-nav ul.subMenu0 > li.level1:last-of-type > a {
  border-bottom: none;
}

.sidebar-nav a.selected, .sidebar-nav a:hover {
  font-weight: 700;
}

.sidebar-nav ul li.subMenuContainer { display:none;}
.sidebar-nav .leftMenuLedisXSLT ul li.subMenuContainer { margin:0 0 10px 15px;}
.sidebar-nav .leftMenuLedisXSLT ul li.subMenuContainer a { font-size:14px;}

.yonetim-list-container {}
.yonetim-list-container .item { display:flex; align-items:start; gap:30px; padding:0 0 30px 0; border-bottom:1px solid var(--color-light-gray); margin:0 0 30px 0;}
.yonetim-list-container .item .thumb { width:30%; display:none;}
.yonetim-list-container .item .thumb img { width:100%;}
.yonetim-list-container .item .summary { width:100%;}

@media (max-width: 1200px) {
  .content-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .main-content-container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    margin-top: 60px;
    position: static;
    width: 100%;
  }
  .sidebar-nav ul.leftMenuLedisXSLT { margin:0 15px;}
  .main-content-section {
    padding: 40px 0;
  }
  .content-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .content-text {
    font-size: 16px;
    line-height: 28px;
  }
  .content-subtitle {
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
.yonetim-list-container .item { flex-direction:column;}
.yonetim-list-container .item .thumb { width:100%;}
.yonetim-list-container .item .summary { width:100%;}
}

/* CSS for section section:cta-banner */
.cta-section {
  position: relative;
  background-image: url('/tr/images/common/3874e23f64e69ea6d694311a1bb457ef6e2efff5.png');
  background-size: cover;
  background-position: center;
  padding: 69px 0;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-primary-green);
  opacity: 0.9;
}

.cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 51px;
}

.cta-tagline {
  font-family: var(--font-poppins);
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-light-bg);
}

.cta-tagline strong {
  font-weight: 600;
}

.cta-logo {
  width: 242px;
  height: 57px;
}

@media (max-width: 768px) {
  .cta-tagline {
    font-size: 20px;
  }
}

/* CSS for section section:footer */
.site-footer {
    background-color: var(--color-white);
    padding: 66px 0 28px;
	border-top:1px solid var(--color-primary-green);
}
.footer-sitemap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer-column {
    flex: 1;
}
.footer-title {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 8px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links li ul {
    display:none !important;
}
.footer-links a {
    font-family: var(--font-montserrat);
    font-size: 13px;
    line-height: 26px;
    color: var(--color-text-gray);
}
.footer-divider {
    border: 0;
    border-top: 1px solid #d9d9d9;
    margin: 33px 0;
}
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo img {
    width: 156px;
}
.social-media {
    display: flex;
    align-items: center;
    gap: 50px;
}
.social-title {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark-blue);
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 23px;
}
.social-icons img { height:17px;}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-poppins);
    font-size: 12px;
    color: #797979;
}
.copyright span { padding:0 30px 0 0;}
.copyright a {
    color: #797979;
	margin-right: 15px;
}


.products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 29px;
}

/*Products*/
.products-list .product-item {
	width: calc(33.33% - 20px);
	margin-bottom: 25px;
	transition: 0.5s;
	}

.products-list .product-item .product-text {
	position:relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 23px;
    padding-left: 46px;
}

.products-list .product-item .product-text:before {
    content: '';
    background: url(../../images/icon/finagro.png) no-repeat top;
    width: 26px;
    height: 46px;
    position: absolute;
    left: 0;
}

.products-list .product-item .product-text .product-title {
    display: flex;
    flex-direction: column;
}

.products-list .product-item .product-text .product-title i {
    color: #51833A;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}

.products-list .product-item .product-text .product-title u {
    text-decoration: none;
    color: #A7904C;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}

.products-list .product-item .product-text .product-sumamry {
    display: flex;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.products-list .product-item .product-text .product-more .btn {
    font-size: 22px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    line-height: 100%;
    transition: 0.5s;
}

.products-list .product-item:hover .product-text .product-more .btn {
    background: #A7904C;
}


.product-detail-list {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.product-detail-list .item:nth-child(1) {
    flex: 1;
}

.product-detail-list .item:nth-child(2) {
    flex: 3;
}

.width-right {
    flex-direction: row-reverse;
}

.custom-ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.custom-ol li {
  counter-increment: item;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.custom-ol li::before {
    content: counter(item);
    width: 20px;
    height: 22px;
    background: var(--color-primary-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 12px;
    font-weight: 600;
}

.content-text .ok li:before {
    content: '✔';
    background: none;
    font-weight: 600;
}

.product-top-title {
    display: flex;
	flex-wrap: wrap;
    gap: 10px;
    font-size: 40px;
    font*w: 6;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
	
}

.product-top-title i {
    font-style: normal;
    color: #51833A;
}

.product-top-title u {
    text-decoration: none;
    color: #A7904C;
}

.product-top-title:before {
    content: '';
    background: url(/tr/images/icon/finagro.png) no-repeat top;
    width: 26px;
    height: 46px;
    position: absolute;
    left: 0;
}

.products-list-two .product-item {
    width: calc(50% - 15px);
}

@media (max-width: 1024px) {
    .products-list {
        gap: 20px;
    }

    .products-list .product-item {
        width: calc(50% - 10px);
    }

    .products-list .product-item .product-text {
        padding-left: 40px;
    }

    .products-list .product-item .product-text .product-title i,
    .products-list .product-item .product-text .product-title u {
        font-size: 24px;
    }

    .products-list .product-item .product-text .product-sumamry {
        font-size: 16px;
        line-height: 24px;
    }

    /* products-list-two */
    .products-list.products-list-two {
        gap: 25px;
    }

    .products-list.products-list-two .product-item {
        width: calc(50% - 14px);
    }

    .products-list.products-list-two .product-text .campaign-description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* =====================
   MOBILE
   ===================== */
@media (max-width: 768px) {
    .products-list {
        flex-direction: column;
        gap: 25px;
    }

    .products-list .product-item,
    .products-list.products-list-two .product-item {
        width: 100%;
        margin-bottom: 0;
    }

    .products-list .product-item a {
        display: block;
    }

    .products-list .product-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .products-list .product-item .product-text,
    .products-list.products-list-two .product-item .product-text {
        padding-left: 0;
        margin-top: 15px;
    }

    .products-list .product-item .product-text:before,
    .products-list.products-list-two .product-item .product-text:before {
        display: none;
    }

    .products-list .product-item .product-text .product-title {
        gap: 4px;
    }

    .products-list .product-item .product-text .product-title i,
    .products-list .product-item .product-text .product-title u {
        font-size: 22px;
    }

    .products-list .product-item .product-text .product-sumamry,
    .products-list.products-list-two .product-text .campaign-description {
        font-size: 15px;
        line-height: 22px;
    }

    .products-list .product-item .product-text .product-more .btn,
    .products-list.products-list-two .product-more .btn {
        font-size: 18px;
        height: 36px;
        width: 100%;
        justify-content: center;
    }
}

/* =====================
   SMALL MOBILE
   ===================== */
@media (max-width: 480px) {
    .products-list .product-item .product-text .product-title i,
    .products-list .product-item .product-text .product-title u {
        font-size: 20px;
    }
	.product-detail-list { flex-direction:column; align-items:center;}
}

/*accordion*/
.accordion-item {
  border-radius: 4px;
}
.accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .accordion-item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.accordion-header {
	padding: 20px 60px 20px 40px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    background: #CDD1D5;
}
@media (max-width: 640px) {
  .accordion-header {
	padding: 20px 60px 20px 25px;
    font-weight: 500;
  }
}
.accordion-header::after {
  content: "\e145";
  font-family: "Material Symbols Outlined";
  display: flex;
  height: 100%;
  position: absolute;
  right: 20px;
  top: 0;
  margin: auto;
  transition: all 0.4s ease;
  font-weight: bold;
  align-items: center;
  font-size: 25px;
}

.accordion-body {
  padding: 0 40px 20px;
  font-weight: 300;
  font-size: 16px;
  color: #1E1E1E;
  line-height: 1.5;
  display: none;
}
.accordion-body .title-2 {
  padding-bottom: 30px;
  display: block;
}
@media (max-width: 640px) {
  .accordion-body {
    padding: 0 40px 20px 20px;
  }
}

.open-accordion {
  background: #F0F0F0;
}
.open-accordion .accordion-header {
  color: #1E1E1E;
  background: #F0F0F0;
}
.open-accordion .accordion-body {
  display: block;
}
.open-accordion .accordion-header::after {
  transform: rotate(-180deg);
  content: "\e15b";
}

.z-depth-1 {
  box-shadow: 0px 6px 60px rgba(0, 0, 0, 0.1);
}


.finagro-title i {
    color: #51833A;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}

.process-list {
    list-style: none;
}

        .process-list li {
            display: flex;
            gap: 18px;
            padding: 22px;
            border-radius: 14px;
            margin-bottom: 14px;
            background: #f8fafc;
            transition: all .3s ease;
        }

        .process-list li:hover {
            background: #eef2ff;
            transform: translateY(-2px);
        }
		
		.process-list li:before {
			display:none;
		}

        .process-list .icon {
            min-width: 42px;
            height: 42px;
            border-radius: 12px;
            background: #51833a;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
        }

        .process-list .process-title {
			font-size: 18px;
			font-weight: bold;
			padding: 0;
        }

        .process-list p {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
			padding: 0;
        }

        .dealer-note {
            margin-top: 40px;
            padding: 22px;
            border-left: 5px solid #22c55e;
            background: #f0fdf4;
            color: #166534;
            border-radius: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {


            .process-list li {
                flex-direction: column;
            }

            .process-list .icon {
                width: 42px;
            }
        }
		
		
		  .step {
            margin-bottom: 40px;
        }

        .step-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .step-number {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #51833a;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 600;
        }

        .step-list {
            list-style: none;
            padding-left: 6px;
        }

        .step-list li {
            display: flex;
            gap: 12px;
            font-size: 15px;
            color: #334155;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .step-list li::before {
            content: "";
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 2px;
            margin-top: 7px;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .step-title {
                font-size: 18px;
            }
        }
		
		
		.finagroTable {
		width: 100%;
		border-collapse: collapse;
		font-size: 14px;
		background-color: #ffffff;
		border: 1px solid #E5E7EB;
		border-radius: 8px;
		overflow: hidden;
		    margin-bottom: 30px;
		}


	.finagroTable tr:first-child {
		background-color: #0A3D62; /* kurumsal lacivert */
	}

	.finagroTable tr:first-child td {
		color: #ffffff;
		font-weight: 600;
		text-transform: uppercase;
		font-size: 13px;
		padding: 14px 16px;
		border-right: 1px solid rgba(255,255,255,0.2);
	}

	.finagroTable td {
		padding: 14px 16px;
		border-bottom: 1px solid #E5E7EB;
		border-right: 1px solid #E5E7EB;
		color: #374151;
		vertical-align: middle;
	}


	.finagroTable td:last-child {
		border-right: none;
	}


	.finagroTable tr:nth-child(even):not(:first-child) {
		background-color: #F9FAFB;
	}

	
	.finagroTable tr:not(:first-child):hover {
		background-color: #EEF6FF;
		transition: background-color 0.2s ease;
	}

	
	.finagroTable strong {
		font-weight: 600;
		color: inherit;
	}

	
	@media (max-width: 768px) {
		.finagroTable {
			font-size: 13px;
		}

		.finagroTable td {
			padding: 10px 12px;
		}
	}


@media (max-width: 1024px) {
    .footer-sitemap {
        flex-wrap: wrap;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .footer-sitemap {
        flex-direction: column;
    }
    .footer-middle, .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
	.copyright span { display:block; padding:0;}
	
	.product-detail-title {
		padding: 20px 25px !important;
		font-size: 22px;
	}
}


#dvCommunicationForm {
}

#dvCommunicationForm ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dvCommunicationForm li {
    margin-bottom: 18px;
    position: relative;
}

#dvCommunicationForm input[type="text"],
#dvCommunicationForm input[type="email"],
#dvCommunicationForm textarea {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    transition: all 0.2s ease;
    box-sizing: border-box;
	font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary-text);
}

#dvCommunicationForm textarea {
    height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

#dvCommunicationForm input:focus,
#dvCommunicationForm textarea:focus {
    border-color: #6b7f8f;
    outline: none;
}

#dvCommunicationForm ::placeholder {
font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-light-gray);
}

#dvCareerApplicationForm {
}

#dvCareerApplicationForm ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dvCareerApplicationForm li {
    margin-bottom: 18px;
    position: relative;
}

#dvCareerApplicationForm input[type="text"],
#dvCareerApplicationForm input[type="email"],
#dvCareerApplicationForm textarea {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    transition: all 0.2s ease;
    box-sizing: border-box;
	font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary-text);
}

#dvCareerApplicationForm textarea {
    height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

#dvCareerApplicationForm input:focus,
#dvCareerApplicationForm textarea:focus {
    border-color: #6b7f8f;
    outline: none;
}

#dvCareerApplicationForm ::placeholder {
font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-light-gray);
}

#dvCareerApplicationForm .file-upload-wrapper:hover {
  border-color: var(--color-border-light);
  background: #fff;
}
#dvCareerApplicationForm .file-upload-wrapper span:first-child {
	font-size: 18px;
    font-weight: 400;
    color: var(--color-light-gray);
}
#dvCareerApplicationForm .file-btn-text {
    padding: 5px 28px;
    border-radius: 15px;
    border: 1.5px solid #51833a;
    background: #fff;
    color: #51833a;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
}
#dvCareerApplicationForm .file-upload-wrapper input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
#dvCareerApplicationForm .file-upload-wrapper input.input-validation-error {
  border: none;
}
#dvCareerApplicationForm .file-upload-wrapper input.input-validation-error ~ .file-btn-text {
  border-color: var(--color-border-light);
  color: var(--color-border-light);
}
#dvCareerApplicationForm .file-upload-wrapper:has(input.input-validation-error) {
  border-color: var(--color-border-light);
  background: #fff5f5;
}
#dvCareerApplicationForm .file-upload-full {
	width: 100%;
    padding: 8px 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--color-primary-text);
}

#dvCareerApplicationForm .file-upload-wrapper {
    display: flex;
    justify-content: space-between;
    align-content: center;
    height: 100%;
    flex-wrap: wrap;
	align-items: center;
}

.field-validation-error {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.field-validation-error span {
    color: #c0392b !important;
    display: flex;
    width: 100%;
}

.twoList {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.twoList .item:first-child {
    margin-top: 3px;
}

.twoList input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
	margin:0;
	padding:0;
}

.twoList span {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}
.twoList a {color: #51833a; font-weight: bold; text-decoration: underline;}

.alert-success { margin:40px 0 0 0;}

.fbFirstSentence {padding: 10px 20px; color: #fff; background: var(--color-primary-green); font-weight:bold; margin:0 0 30px 0; text-align:center;}
.fbSecondSentence {font-weight:bold;}
.fbLink a {color: #51833a; font-weight: bold; text-decoration: underline;}

#imgCaptcha {
    border: 1px solid #cfd6dc;
    height: 48px;
    vertical-align: middle;
}

#imgRefreshCaptcha {
    height: 40px;
}

.btnSend {
    width: 100%;
    height: 50px;
    background: #5f7685;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btnSend:hover {
    background: #4f6674;
}

#dvCommunicationFormMessage {
    margin-bottom: 20px;
	font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary-text);
}

#dvCareerApplicationFormMessage {
    margin-bottom: 20px;
	font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary-text);
}

.loading-modal { display:none; background:rgba(81, 131, 58, 0.7); backdrop-filter: blur(20px); position: fixed; top: 0; width: 100%; height: 100%; left: 0; right: 0; z-index: 9999999999;}
.loading-center {text-align: center; display: flex; align-items: center; justify-content: center; height: 100%; width: 100%;}

@media (max-width: 768px) {
    #dvCommunicationForm {
        max-width: 100%;
    }
	
	#dvCareerApplicationForm {
        max-width: 100%;
    }

    .twoList {
        align-items: flex-start;
    }
	.card{padding:20px}
  .form-row{grid-template-columns:1fr;gap:15px}
}


.wa-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
    font-family: sans-serif;
  }
  .wa-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  }
  .wa-menu.open { max-height: 500px; opacity: 1; }
  .wa-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 40px;
    padding: 10px 18px 10px 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .wa-item:hover { transform: translateX(-4px); }
  .wa-item-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .wa-item-icon svg { width: 18px; height: 18px; }
  .wa-item-dept { font-size: 13px; font-weight: 600; color: #111; display: block; }
  .wa-item-phone { font-size: 12px; color: #666; display: block; }
  .wa-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  }
  .wa-btn:hover { background: #1ebe5a; transform: scale(1.08); }
  .wa-btn-inner { position: relative; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
  .wa-btn svg.icon-chat { transition: opacity 0.2s ease, transform 0.2s ease; }
  .wa-btn svg.icon-close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); transition: opacity 0.2s ease, transform 0.2s ease; }
  .wa-btn.active .icon-chat { opacity: 0; transform: rotate(90deg) scale(0.6); }
  .wa-btn.active .icon-close { opacity: 1; transform: rotate(0deg) scale(1); }
  
  
  .content-text button.settings-btn { margin:0; padding: 7px; font-size: 15px; border-radius: 3px; display: inline-block; cursor: pointer; border: none; transition: all .3s ease-in;}
    .settings-btn { background: #ccc; color: #ab1818; }
	
	
	 .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
 
  /* ---- Split Button ---- */
  .split-btn-wrapper {
    position: relative;
    display: inline-flex;
  }
 
  .split-btn {
    display: inline-flex;
    font-family: var(--font-bebas);
  font-size: 20px;
  font-weight: 400;
    overflow: hidden;
	border-radius:10px;
  }
 
  .split-part {
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
    background: var(--color-primary-green);
    transition: background 0.15s;
    white-space: nowrap;
    user-select: none;
  }
  .split-part.farmer {
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .split-part:hover,
  .split-part.active { background: #1b5e20; }
 
  .split-divider {
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    background: #2e7d32;
    padding: 0 2px;
    font-weight: 300;
    font-size: 16px;
    pointer-events: none;
  }
 
  /* ---- Dropdown ---- */
  .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    z-index: 999;
    overflow: hidden;
  }
 
  .farmer-dropdown { left: 0; }
  .dealer-dropdown { right: 0; }
 
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    font-family: 'Segoe UI', sans-serif;
    transition: background 0.12s;
  }
  .dropdown a:last-child { border-bottom: none; }
  .dropdown a:hover { background: #f0fdf4; color: #2e7d32; }
 
  .dropdown a .icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  
  
  * { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'Segoe UI',sans-serif; }

.wrap {
  width:100%;
  background:linear-gradient(170deg,#ccc 10%,#2a7a34 50%,#1e6830 100%);
  padding: 120px 0 130px 0;
  position:relative;
  overflow:hidden;
}

/* bg texture circles */
.bg-circle {
  position:absolute; border-radius:50%;
  background:rgba(255,255,255,0.04);
  pointer-events:none;
}

/* floating dots */
.fdot {
  position:absolute; border-radius:50%;
  background:rgba(160,240,100,0.12);
  animation:fdotFloat linear infinite;
  pointer-events:none;
}
@keyframes fdotFloat {
  0%  {transform:translateY(0);opacity:.3}
  50% {opacity:.7}
  100%{transform:translateY(-600px);opacity:0}
}

/* title */
.main-title {
  text-align:center; margin-bottom:25px; opacity:0; animation:fadeDown .6s ease forwards .1s; display:flex; justify-content:center; align-items:center; gap:10px;
}
@keyframes fadeDown {
  from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)}
}
.main-title span { display:block; font-size:44px; color:rgba(255,255,255,.55); font-weight:300; text-transform:uppercase; }
.main-title strong { display:block; font-size:44px; font-weight:900; color:#fff; }
.tbar { width:0; height:3px; background:rgba(255,255,255,.4); border-radius:4px; margin:5px auto 0; animation:barGrow .5s ease forwards .7s; }
@keyframes barGrow { to{width:44px} }

/* â”€â”€ ROW 1: 4 Ã§iftÃ§i stats â”€â”€ */
.row1 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-bottom:14px;
  align-items:end;
}

.fcard {
  display:flex; flex-direction:column; align-items:center;
  opacity:0;
}
.fcard:nth-child(1){ margin-top:0; }
.fcard:nth-child(2){ margin-top:-20px; }
.fcard:nth-child(3){ margin-top:14px; }
.fcard:nth-child(4){ margin-top:-10px; }

.fcirc {
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
}
.pr {
  position:absolute; border-radius:50%;
  border:2.5px solid rgba(160,240,100,0.3);
  animation:prAnim 2.6s ease-out infinite;
  pointer-events:none;
}
@keyframes prAnim { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.65);opacity:0} }

.fnum { font-size:32px; font-weight:900; color:#fff; margin-top:8px; line-height:1; text-align:center; }
.fnum sup { color:#a8f07a; font-size:24px; }
.flbl { font-size:18px; font-weight:700; color:rgba(255,255,255,.65); margin-top:3px; text-align:center; line-height:1.3; }

/* â”€â”€ DIVIDER â”€â”€ */
.divider {
  width:100%; height:1px;
  background:rgba(255,255,255,.12);
  margin:6px 0 14px;
  opacity:0; animation:fadeIn .4s ease forwards;
}
@keyframes fadeIn { to{opacity:1} }

/* â”€â”€ ROW 2: 3 cards (hayvan/arazi) â”€â”€ */
.row2 {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}

/* â”€â”€ ROW 3: 4 Ã¼rÃ¼n + 1 bÃ¼yÃ¼k imkÃ¢n â”€â”€ */
.row3 {
  display:grid;
  grid-template-columns:repeat(4,1fr) 1.3fr;
  gap:10px;
}

.icard {
  background:rgba(255,255,255,0.09);
  border:1.5px solid rgba(255,255,255,0.16);
  border-radius:12px;
  padding:12px 10px;
  display:flex;
  align-items:center;
  gap:9px;
  opacity:0;
}
.icard.big {
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.26);
  gap:4px;
}

.ic-icon { font-size:44px; flex-shrink:0; line-height:1; }
.ic-num  { font-size:24px; font-weight:900; color:#fff; line-height:1; }
.ic-num sup { font-size:18px; color:#a8f07a; font-weight:300; }
.ic-lbl  { font-size:18px; font-weight:600; color:rgba(255,255,255,.6); margin-top:2px; line-height:1.3; }

.big .ic-icon { font-size:44px; }
.big .ic-num  { font-size:24px; }

/* entry animations */
@keyframes dropIn { 0%{opacity:0;transform:translateY(-60px) scale(.55)} 65%{transform:translateY(7px) scale(1.06)} 85%{transform:translateY(-3px) scale(.97)} 100%{opacity:1;transform:translateY(0) scale(1)} }
@keyframes riseUp { 0%{opacity:0;transform:translateY(60px) scale(.55)} 65%{transform:translateY(-7px) scale(1.06)} 85%{transform:translateY(3px) scale(.97)} 100%{opacity:1;transform:translateY(0) scale(1)} }
@keyframes slideL { 0%{opacity:0;transform:translateX(80px) scale(.55)} 65%{transform:translateX(-5px) scale(1.06)} 85%{transform:translateX(2px) scale(.97)} 100%{opacity:1;transform:translateX(0) scale(1)} }
@keyframes zoomIn { 0%{opacity:0;transform:scale(.2) rotate(-12deg)} 70%{transform:scale(1.1) rotate(2deg)} 100%{opacity:1;transform:scale(1) rotate(0)} }
@keyframes cardPop{ 0%{opacity:0;transform:scale(.65) translateY(14px)} 70%{transform:scale(1.05) translateY(-2px)} 100%{opacity:1;transform:scale(1) translateY(0)} }
@keyframes numPop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.18);color:#a8f07a} }

/* burst */
.bdot { position:absolute; width:6px; height:6px; border-radius:50%; animation:bdOut .6s ease-out forwards; pointer-events:none; }
@keyframes bdOut { 0%{transform:translate(0,0) scale(1);opacity:1} 100%{transform:var(--tx);opacity:0} }
.spk  { position:absolute; pointer-events:none; animation:spkFade .85s ease-out forwards; }
@keyframes spkFade { 0%{opacity:1;transform:scale(.5) rotate(0)} 100%{opacity:0;transform:scale(1.5) rotate(90deg)} }