:root {
    --color-primary: #2e7d32; /* Koyu yeşil */
    --color-primary-hover: #1b5e20; /* Daha koyu yeşil */
    --color-secondary: #4caf50; /* Normal yeşil */
    --color-secondary-hover: #388e3c; /* Biraz daha koyu yeşil */
    --color-tertiary: #8bc34a; /* Açık yeşil */
    --color-tertiary-hover: #7cb342; /* Biraz koyu açık yeşil */
    --color-light: #a5d6a7; /* Çok açık yeşil */
    --color-light-hover: #81c784; /* Biraz koyu açık yeşil */
    --color-dark: #1b5e20; /* Çok koyu yeşil */
    --color-dark-hover: #0d3f0d; /* En koyu yeşil */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #f5f5f5;
    --color-gray-dark: #e0e0e0;
    --color-gray-darker: #cccccc;
    --color-gray-light: #fafafa;
    --color-gray-lighter: #f7f7f7;
    --color-danger: #f44336;
    --color-danger-hover: #d32f2f;
    --color-warning: #4caf50; /* Turuncu yerine yeşil */
    --color-warning-hover: #388e3c; /* Turuncu hover yerine yeşil hover */
    --color-success: #4caf50;
    --color-success-hover: #388e3c;
    --color-info: #2196f3;
    --color-info-hover: #1976d2;
}

/* Bootstrap renklerini geçersiz kılma */
.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.bg-success {
    background-color: var(--color-success) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.bg-info {
    background-color: var(--color-tertiary) !important;
}

.text-info {
    color: var(--color-tertiary) !important;
}

.bg-warning {
    background-color: var(--color-warning) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.bg-danger {
    background-color: var(--color-danger) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.bg-light {
    background-color: var(--color-gray-light) !important;
}

.text-light {
    color: var(--color-gray-light) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

/* Genel Stiller */
body {
    font-family: 'Kanit', serif;
    color: #333;
    background-color: var(--color-gray-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit', serif;
    font-weight: 700;
    color: var(--color-dark);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary-hover);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 15px 0;
}

.logo-container {
    padding: 10px 0;
}

.logo {
    max-height: 150px;
}

.footer-logo {
    max-height: 150px;
    border-radius: 10px;
    margin-bottom: 1rem;
}
@media screen and (max-width: 768px){
    .footer-logo {
        margin-top: 2rem;
    }
}

.contact-info {
    color: var(--color-white);
}

.contact-info i, 
.contact-info span {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Ana Menü */
.main-nav {
    background-color: var(--color-primary);
    padding: 0;
    z-index: 999;
}

.main-nav .navbar-nav .nav-item .nav-link {
    color: var(--color-white);
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.main-nav .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar-nav .nav-item .nav-link.active {
    background-color: var(--color-primary-hover);
}

/* Hero Bölümü */
.home-hero-section{
    height: 600px;
}
.home-hero-section .hero-title{
    color: #fff;
}

.hero-section {
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    position: relative;
    padding: 110px 0 20px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/*.hero-content .badge,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-stats,
.hero-content > div:last-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}*/

.hero-content .badge {
    transition-delay: 0s;
}

.hero-content .hero-title {
    transition-delay: 0.2s;
}

.hero-content .hero-subtitle {
    transition-delay: 0.4s;
}

.hero-content .hero-stats {
    transition-delay: 0.6s;
}

.hero-content > div:last-child {
    transition-delay: 0.8s;
}

/*.swiper-slide-active .hero-content .badge,
.swiper-slide-active .hero-content .hero-title,
.swiper-slide-active .hero-content .hero-subtitle,
.swiper-slide-active .hero-content .hero-stats,
.swiper-slide-active .hero-content > div:last-child {
    opacity: 1;
    transform: translateY(0);
}*/

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

/* Ürün Kategorileri */
.categories-section {
    padding: 80px 0;
}

.category-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.category-content {
    padding: 20px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 80px 0;
    background-color: var(--color-gray);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Galeri */
.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    transition: all 0.5s ease;
    width: 100%;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* İletişim Bölümü */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-gray-light);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.contact-form {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--color-gray-darker);
    padding: 12px 15px;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background-image: url(../images/hero/bg4.webp);
    background-repeat: no-repeat;
    color: var(--color-white);
    background-position: center;
}

.site-footer-wrapper {
    padding: 4rem;
    padding-top: 6rem;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-white);
    text-shadow: 2px 2px 4px #000000e3;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-gray-light);
    text-shadow: 2px 2px 4px #000000e3;
}

.footer-links a:hover {
    color: var(--color-light);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: var(--color-gray-light);
}

.social-links a{
    color: #fff;
}

/* Yukarı Çık Butonu */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Ağaç Türleri Sayfaları */
.tree-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.tree-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tree-card-img {
    overflow: hidden;
}

.tree-card-img img {
    transition: all 0.5s ease;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.tree-card:hover .tree-card-img img {
    transform: scale(1.1);
}

.tree-card-content {
    padding: 20px;
}

.tree-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.tree-features {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.tree-features li {
    padding: 5px 0;
    border-bottom: 1px solid var(--color-gray-dark);
}

.tree-features li:last-child {
    border-bottom: none;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    left: 0;
    bottom: -8px;
}

.section {
    padding: 80px 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.check-list li i {
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 3px;
}

.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: var(--color-white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cta-section h2,
.cta-section p {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
    .site-header {
        position: relative;
        background-color: var(--color-white);
    }
    
    .contact-info i, 
    .contact-info span {
        color: var(--color-dark);
        text-shadow: none;
    }
    
    .main-nav {
        position: static;
        background-color: var(--color-white);
    }
    
    .main-nav .navbar-nav .nav-item .nav-link {
        color: var(--color-dark);
        padding: 10px 15px;
    }
    
    .main-nav .navbar-nav .nav-item .nav-link:hover,
    .main-nav .navbar-nav .nav-item .nav-link.active {
        background-color: var(--color-light);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* Yeni Header Stilleri */
.top-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.top-header a:hover {
    color: var(--color-primary) !important;
}

.main-header {
    position: relative;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.main-header .logo-container {
    display: block;
}

.main-header .logo {
    max-height: 150px;
    transition: all 0.3s ease;
}

.header-search .form-control {
    padding: 10px 20px;
    border-color: var(--color-gray-dark);
    background: var(--color-gray-light);
    transition: all 0.3s ease;
}

.header-search .form-control:focus {
    box-shadow: none;
    border-color: var(--color-primary);
    background: var(--color-white);
}

.header-search .btn {
    padding-right: 15px;
}

/* Navbar */
.main-nav {
    background-color: var(--color-primary);
    padding: 0;
}

.main-nav .navbar-nav {
    width: 100%;
    justify-content: start;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    color: var(--color-white);
    font-weight: 500;
    padding: 15px 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background-color: var(--color-primary-hover);
}

.main-nav .dropdown-menu {
    border: none;
    border-radius: 0;
    margin-top: 0;
    background-color: var(--color-white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.main-nav .dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.main-nav .dropdown-item:last-child {
    border-bottom: none;
}

.main-nav .dropdown-item:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .main-nav {
        background-color: var(--color-white);
        padding: 10px 0;
    }
    
    .main-nav .navbar-collapse {
        background-color: var(--color-white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }
    
    .main-nav .nav-link {
        color: var(--color-dark);
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .main-nav .nav-link.active,
    .main-nav .nav-link:hover {
        background-color: var(--color-gray-light);
        color: var(--color-primary);
    }
    
    .main-nav .dropdown-menu {
        background-color: var(--color-gray-light);
        padding: 0;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0;
        color: var(--color-primary);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Hero Swiper Styling */
.hero-section {
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 30px 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1;
}

.hero-swiper-button-next,
.hero-swiper-button-prev {
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper-button-next:after,
.hero-swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background: var(--color-primary);
}

@media (max-width: 991.98px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        display: none;
    }
}

/* Dinamik Arka Plan Şekilleri */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-tertiary));
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-tertiary), var(--color-light));
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-light));
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    top: 40%;
    left: 50%;
    animation-delay: 8s;
}

.shape-6 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--color-light), var(--color-tertiary));
    bottom: 40%;
    left: 20%;
    animation-delay: 10s;
}

.shape-7 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, var(--color-tertiary), var(--color-secondary));
    top: 80%;
    right: 30%;
    animation-delay: 12s;
}

.shape-8 {
    width: 110px;
    height: 110px;
    background: linear-gradient(45deg, var(--color-light), var(--color-primary));
    top: 30%;
    right: 40%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

/* Fixed Navigation */
.main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mega Menu Styles */
.mega-dropdown {
    position: static;
}

    .mega-dropdown .mega-menu {
        position: absolute;
        top: 100%;
        left: -200px;
        right: 0;
        border: none;
        border-radius: 0;
        margin-top: 0;
        background-color: var(--color-white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 30px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        min-width: 800px;
        max-width: 1000px;
    }

@media screen and (max-width: 768px){
    .mega-dropdown .mega-menu {
        left: auto;
        min-width: auto;
        max-width: max-content;
    }
}
.mega-dropdown:hover .mega-menu,
.mega-dropdown .mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu .container {
    max-width: 1200px;
}

.mega-menu .dropdown-header {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu .dropdown-header .icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.mega-menu .dropdown-item {
    padding: 12px 0;
    color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 3px 0;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    display: block;
    text-decoration: none;
}

.mega-menu .dropdown-item:hover {
    background-color: rgba(46, 125, 50, 0.08);
    color: var(--color-primary);
    transform: translateX(8px);
    padding-left: 15px;
}

.mega-menu .dropdown-item.text-primary {
    color: var(--color-primary) !important;
    font-weight: 600;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
    font-size: 1rem;
}

.mega-menu .dropdown-item.text-primary:hover {
    background-color: var(--color-primary);
    color: white !important;
    transform: translateX(0);
    padding-left: 15px;
    border-radius: 25px;
}

.mega-menu .dropdown-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 20px 0;
    border: none;
    opacity: 0.3;
}

.mega-menu .dropdown-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.mega-menu .dropdown-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.mega-menu .dropdown-cta h6 {
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.mega-menu .dropdown-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.mega-menu .dropdown-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-cta .btn:hover {
    background: white;
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.8), rgba(76, 175, 80, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.filter-buttons .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-buttons .btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mega Menu Responsive */
@media (max-width: 991.98px) {
    .mega-dropdown .mega-menu {
        position: static;
        width: 100%;
        padding: 20px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-gray-light);
    }
    
    .mega-menu .container {
        padding: 0 15px;
    }
    
    .mega-menu .dropdown-header {
        font-size: 1rem;
        padding: 15px 0 10px 0;
        margin-bottom: 10px;
        border-bottom: 2px solid var(--color-primary);
    }
    
    .mega-menu .dropdown-item {
        padding: 10px 15px;
        margin: 2px 0;
        background: white;
        border-radius: 8px;
        border: 1px solid rgba(46, 125, 50, 0.1);
    }
    
    .mega-menu .dropdown-item:hover {
        transform: none;
        padding-left: 15px;
        background-color: var(--color-primary);
        color: white;
    }
    
    .mega-menu .dropdown-cta {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .mega-menu .dropdown-divider {
        margin: 15px 0;
    }
}

@media (max-width: 767.98px) {
    .mega-menu .col-md-3,
    .mega-menu .col-md-4 {
        margin-bottom: 25px;
    }
    
    .mega-menu .dropdown-header {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .mega-menu .dropdown-item {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .mega-menu .dropdown-cta {
        padding: 15px 10px;
    }
    
    .mega-menu .dropdown-cta h6 {
        font-size: 1rem;
    }
    
    .mega-menu .dropdown-cta p {
        font-size: 0.85rem;
    }
}

/* Kategori Kartları Geliştirmeleri */
.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-content {
    padding: 25px;
}

.category-title {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-stats {
    margin-bottom: 20px;
}

.category-stats .badge {
    font-size: 0.8rem;
    padding: 5px 12px;
}

/* Ürün Kartları */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-content {
    padding: 20px;
}

.product-content h5 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.product-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-price .stock {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Özellik Kartları Geliştirmeleri */
.feature-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.feature-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: white !important;
}

/* Responsive İyileştirmeler */
@media (max-width: 991.98px) {
    .floating-shapes {
        display: none;
    }
    
    .mega-menu {
        position: relative !important;
        width: 100% !important;
        padding: 20px !important;
    }
    
    .mega-menu .container {
        padding: 0;
    }
    
    .mega-menu .row {
        margin: 0;
    }
    
    .mega-menu .col-md-3,
    .mega-menu .col-md-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .shape {
        display: none;
    }
    
    .category-card,
    .product-card {
        margin-bottom: 20px;
    }
    
    .main-nav.fixed {
        position: relative;
    }
}

/* Mini Product Cards */
.mini-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.mini-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mini-product-image {
    position: relative;
    overflow: hidden;
    height: 120px;
    background: #f8f9fa;
}

.mini-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-product-card:hover .mini-product-image img {
    transform: scale(1.05);
}

.mini-product-content {
    padding: 12px 8px;
}

.mini-product-content h6 {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.2;
}

.mini-price {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.mini-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mini-link:hover {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
}

/* Tree Varieties Showcase */
.tree-varieties-showcase {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.tree-varieties-showcase .section-heading h3 {
    position: relative;
    display: inline-block;
}

.tree-varieties-showcase .section-heading h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

/* Category Detail Cards */
.category-detail-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.category-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-detail-content {
    padding: 20px;
}

.category-detail-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-detail-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-detail-list .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin: 2px;
}

/* Stat Cards */
.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Responsive for Mini Cards */
@media (max-width: 767.98px) {
    .mini-product-card {
        margin-bottom: 15px;
    }
    
    .mini-product-content h6 {
        font-size: 0.8rem;
    }
    
    .mini-price {
        font-size: 0.85rem;
    }
    
    .mini-link {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .tree-varieties-showcase {
        padding: 30px 15px;
        margin: 30px 0;
    }
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.8), rgba(76, 175, 80, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.filter-buttons .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-buttons .btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
} /* Hero Animation Styles */
/*.hero-content .badge,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-stats,
.hero-content > div:last-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}*/

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 18px;
    color: white;
    font-weight: bold;
}
