/* ========================================
   BAMBU YAPI - DOĞAL PEYZAJ WEB SİTESİ
   Yeşil-Beyaz Doğa Dostu Tema
   ======================================== */

/* ========== ROOT & RESET ========== */
:root {
    /* Doğa Dostu Renk Paleti - Yeşil & Beyaz */
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --light-green: #7ba044;
    --pale-green: #c8e6c9;
    --very-light-green: #e8f5e9;
    
    --dark-brown: #3e2723;
    --medium-brown: #5d4037;
    --light-brown: #8d6e63;
    
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    --text-dark: #212121;
    
    /* Accent Colors */
    --bamboo-yellow: #f9a825;
    --earth-orange: #ff6f00;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: linear-gradient(180deg, #e0f2f7 0%, #ffffff 50%, #e8f5e9 100%);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Ocean Canvas Background */
#ocean-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#ocean-bg-canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.navbar {
    padding: 12px 0;
    transition: padding 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-green), var(--secondary-green));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--secondary-green);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-contact::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(45, 80, 22, 0.15);
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(45, 80, 22, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.mobile-menu-btn:hover::before {
    width: 100%;
    height: 100%;
}

.mobile-menu-btn:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--light-gray);
    padding: 0;
    margin-top: 0;
}

/* ========== KAYAN ŞERİT BANNERLAR ========== */
.scrolling-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--secondary-green);
    border-bottom: 1px solid var(--secondary-green);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.15);
}

.scrolling-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--secondary-green) 0%, 
        var(--light-green) 50%, 
        var(--secondary-green) 100%);
}

.scrolling-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--secondary-green) 0%, 
        var(--light-green) 50%, 
        var(--secondary-green) 100%);
}

.top-banner {
    margin-bottom: -15px;
    z-index: 10;
    position: relative;
}

.bottom-banner {
    margin-top: -15px;
    z-index: 10;
    position: relative;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 25s linear infinite;
}

.bottom-banner .banner-content {
    animation: scroll-right 25s linear infinite;
}

.banner-content span {
    display: inline-block;
    padding: 0 60px;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--white);
    text-shadow: 
        -1.5px -1.5px 0 var(--secondary-green),
        1.5px -1.5px 0 var(--secondary-green),
        -1.5px 1.5px 0 var(--secondary-green),
        1.5px 1.5px 0 var(--secondary-green),
        0 0 8px rgba(45, 80, 22, 0.4);
    letter-spacing: 0.5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Hover'da animasyonu yavaşlat */
.scrolling-banner:hover .banner-content {
    animation-play-state: paused;
}

/* ========== HERO SLIDER CONTENT ========== */

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 50px 40px;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: slideInDown 0.8s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.8s ease 0.2s backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: var(--primary-green);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-primary-lg {
    display: inline-block;
    background: linear-gradient(135deg, #f9a825 0%, #ff8f00 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-primary-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-primary-lg:hover::before {
    left: 100%;
}

.btn-primary-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary:hover,
.btn-primary-lg:hover {
    background: linear-gradient(135deg, #ff8f00 0%, #f57c00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 168, 37, 0.4);
}

.btn-secondary-lg {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-lg:hover {
    background-color: rgba(255, 255, 255, 1);
    color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-link {
    color: var(--secondary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding-bottom: 2px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-green), var(--light-green));
    transition: width 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-green);
    gap: 10px;
}

.btn-link:hover::after {
    width: 100%;
}

/* ========== SECTIONS ========== */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Arkaplan Desenleri */
.bamboo-pattern-bg {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        repeating-linear-gradient(90deg, 
            rgba(123, 160, 68, 0.015) 0px, 
            rgba(123, 160, 68, 0.015) 2px, 
            transparent 2px, 
            transparent 12px),
        repeating-linear-gradient(0deg, 
            rgba(45, 80, 22, 0.01) 0px, 
            rgba(45, 80, 22, 0.01) 2px, 
            transparent 2px, 
            transparent 12px);
    background-size: 100% 100%, 12px 12px, 12px 12px;
}

.wave-pattern-bg {
    background-color: rgba(255, 255, 255, 0.5);
    background-image: 
        radial-gradient(circle at 100% 150%, rgba(227, 242, 253, 0.2) 24%, transparent 25%),
        radial-gradient(circle at 0% 150%, rgba(225, 245, 254, 0.2) 24%, transparent 25%),
        radial-gradient(circle at 50% -50%, rgba(179, 229, 252, 0.2) 24%, transparent 25%);
    background-size: 3em 3em, 3em 3em, 3em 3em;
    background-position: 0 0, 1.5em 1.5em, 0 1.5em;
    backdrop-filter: blur(2px);
}

.ocean-pattern-bg {
    background: linear-gradient(135deg, #0077be 0%, #00a8cc 50%, #4a7c2c 100%);
    background-size: 400% 400%;
    animation: oceanGradient 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.ocean-pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 40px),
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 40px);
    opacity: 0.5;
}

@keyframes oceanGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Overlay Katmanları */
.overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(3px);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 119, 190, 0.05) 0%, 
        rgba(74, 124, 44, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Container'ları overlay üzerine çıkar */
.bamboo-pattern-bg .container,
.wave-pattern-bg .container,
.ocean-pattern-bg .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green), var(--secondary-green));
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.alt-bg {
    background-color: var(--very-light-green);
}

/* ========== BİZ KİMİZ SECTION ========== */
.about-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f0f7f4 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 124, 44, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-us-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-us-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(74, 124, 44, 0.3);
}

.about-us-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-us-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid rgba(45, 80, 22, 0.1);
    border-bottom: 2px solid rgba(45, 80, 22, 0.1);
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.about-features {
    display: grid;
    gap: 15px;
    margin-bottom: 35px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.15);
}

.about-feature-item svg {
    color: var(--secondary-green);
    flex-shrink: 0;
}

.about-feature-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-us-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-logo-container {
    position: relative;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(45, 80, 22, 0.2));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.logo-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

.logo-decoration-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.2), rgba(123, 160, 68, 0.2));
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.logo-decoration-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(123, 160, 68, 0.2), rgba(45, 80, 22, 0.2));
    bottom: -15px;
    right: -15px;
    animation-delay: 1s;
}

.logo-decoration-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.15), rgba(74, 124, 44, 0.15));
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.about-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--bamboo-yellow), var(--earth-orange));
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(249, 168, 37, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: bounceIn 1s ease-out 0.5s backwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.badge-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.badge-text strong {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.85rem;
    opacity: 0.95;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7f4 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-slider-wrapper::before,
.testimonials-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.testimonials-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f0f7f4, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    color: rgba(74, 124, 44, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
    border-color: var(--secondary-green);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 124, 44, 0.3);
}

.avatar-placeholder {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.testimonial-info h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-rating {
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--secondary-green);
    font-weight: 500;
}

/* ========== CORPORATE IDENTITY SECTION ========== */
.corporate-header {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(74, 124, 44, 0.85), rgba(123, 160, 68, 0.85)), url('../images/Bahçe&peyzaj ürünleri/WhatsApp Image 2025-11-14 .jpeg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.corporate-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23fff"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.corporate-identity {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.corporate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.big-logo-container {
    position: relative;
    padding: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-main-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(74, 124, 44, 0.2), transparent);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.corporate-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.badge-item {
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(74, 124, 44, 0.2);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.badge-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.corporate-content {
    animation: slideInRight 1s ease-out;
}

.corporate-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 20px;
}

.corporate-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list-item svg {
    color: var(--secondary-green);
    flex-shrink: 0;
}

.feature-list-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== PROJECT GALLERY ========== */
.project-gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* ========== EXPERTISE SECTION ========== */
.expertise-section {
    padding: 100px 0;
    position: relative;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.expertise-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
    border-color: var(--secondary-green);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.expertise-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-section .cta-box {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.3);
}

.cta-section .cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section .cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 160, 68, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(45, 80, 22, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(123, 160, 68, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(2px 4px 6px rgba(45, 80, 22, 0.2));
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(3px 6px 10px rgba(45, 80, 22, 0.3));
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 119, 190, 0.08);
}

.service-card:hover {
    box-shadow: 0 12px 35px rgba(0, 119, 190, 0.2);
    transform: translateY(-8px);
    border-color: rgba(0, 119, 190, 0.2);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-green), var(--light-green));
    transition: width 0.4s ease;
}

.service-card:hover .service-content::before {
    width: 100%;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--secondary-green);
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ========== MODERN CTA SECTION ========== */
.cta-section-modern {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.cta-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(74,124,44,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,133.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.cta-modern-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 25px;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.25);
    overflow: hidden;
}

.cta-modern-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.cta-icon-wrapper {
    position: relative;
    z-index: 2;
}

.cta-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-icon-circle svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cta-modern-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-modern-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-modern-content > p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-features-mini span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button-wrapper {
    position: relative;
    z-index: 2;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-green);
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta-modern:hover::before {
    left: 100%;
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.btn-cta-modern svg {
    transition: transform 0.3s ease;
}

.btn-cta-modern:hover svg {
    transform: translateX(5px);
}

/* CTA Modern Responsive */
@media (max-width: 1024px) {
    .cta-modern-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-icon-wrapper {
        margin: 0 auto;
    }
    
    .cta-features-mini {
        justify-content: center;
    }
    
    .cta-button-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-section-modern {
        padding: 60px 0;
    }
    
    .cta-modern-box {
        padding: 35px 25px;
        gap: 25px;
    }
    
    .cta-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon-circle svg {
        width: 36px;
        height: 36px;
    }
    
    .cta-modern-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-modern-content > p {
        font-size: 1rem;
    }
    
    .btn-cta-modern {
        padding: 15px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-modern-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .cta-modern-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-modern-content > p {
        font-size: 0.95rem;
    }
    
    .cta-features-mini {
        gap: 10px;
    }
    
    .cta-features-mini span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ========== CATALOG PAGE STYLES ========== */
/* Catalog Hero */
.catalog-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(74, 124, 44, 0.85), rgba(123, 160, 68, 0.9)), url('../images/Bahçe&peyzaj ürünleri/WhatsApp Image 2025-11-14 .jpeg') center/cover no-repeat;
    padding: 120px 0 80px;
    overflow: hidden;
}

.catalog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,133.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.catalog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.catalog-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.catalog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.catalog-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
}

.catalog-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.catalog-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-stat-item strong {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.catalog-stat-item span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Sticky Catalog Navigation */
.catalog-sticky-nav {
    position: sticky;
    top: 80px;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-bottom: 2px solid var(--light-green);
}

.catalog-nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    overflow-x: auto;
    gap: 5px;
}

.catalog-nav-wrapper::-webkit-scrollbar {
    height: 4px;
}

.catalog-nav-wrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-green);
    border-radius: 4px;
}

.catalog-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    min-width: 120px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.catalog-nav-link:hover {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.1), rgba(123, 160, 68, 0.1));
    transform: translateY(-2px);
}

.catalog-nav-link .nav-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.catalog-nav-link .nav-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Catalog Category Section */
.catalog-category {
    padding: 80px 0;
    position: relative;
}

.catalog-category-alt {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.category-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 5rem;
    line-height: 1;
}

.category-header-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.category-header-content > p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-badge {
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Catalog Product Grid */
.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.catalog-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.catalog-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f9a825, #ff6f00);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.catalog-product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalog-product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.catalog-product-card:hover .btn-view-details {
    transform: translateY(0);
}

.btn-view-details:hover {
    background: var(--primary-green);
    color: white;
}

.catalog-product-info {
    padding: 25px;
}

.catalog-product-info h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-desc {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-specs span {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.9), rgba(45, 80, 22, 0.9)), url('../images/Bahçe&peyzaj ürünleri/WhatsApp Image 2025-11-14 .jpeg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ========== KURUMSAL PAGE ========== */
.about-content {
    background-color: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--secondary-green);
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--very-light-green), var(--pale-green));
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-green);
}

.service-details {
    margin-top: 30px;
}

.detail-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--light-green);
}

.detail-item h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.detail-item p {
    margin-bottom: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.advantage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.adv-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-card h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== HİZMETLERİMİZ PAGE ========== */
.category-nav {
    background-color: var(--pale-green);
    padding: 25px 0;
    position: sticky;
    top: 79px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.category-links {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.cat-link {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cat-link:hover {
    background-color: var(--secondary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.catalog-section {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ========== BÖLGELER PAGE ========== */
.regions-intro {
    background-color: var(--off-white);
    padding: 60px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.regions-section {
    padding: 60px 0;
}

.region-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--light-green);
}

.region-header h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.region-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.region-content strong {
    color: var(--secondary-green);
    font-weight: 600;
}

/* ========== İLETİŞİM PAGE ========== */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-info-box p,
.contact-form-box p {
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.info-content p {
    margin-bottom: 5px;
}

.info-content a {
    color: var(--secondary-green);
    font-weight: 600;
}

.info-content a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 44, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
}

.form-message.success {
    background-color: var(--pale-green);
    color: var(--primary-green);
    display: block;
}

.form-message.error {
    background-color: #ffcdd2;
    color: #c62828;
    display: block;
}

/* FAQ Section */
.faq-section {
    background-color: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

/* Footer About Section */
.footer-about {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--bamboo-yellow);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-us-content h2 {
        font-size: 2.2rem;
    }
    
    .about-logo {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    /* Genel */
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95), 
            rgba(245, 245, 245, 0.95));
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: 100%;
        height: calc(100vh - 78px);
        text-align: center;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
                    0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 40px 0;
        gap: 8px;
        border-top: 2px solid rgba(45, 80, 22, 0.15);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu a {
        padding: 18px 30px;
        border-radius: 16px;
        margin: 0 20px;
        font-size: 1.05rem;
        font-weight: 500;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        background: transparent;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(45, 80, 22, 0.1), 
            transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, 
            rgba(45, 80, 22, 0.08), 
            rgba(74, 124, 44, 0.08));
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 4px 15px rgba(45, 80, 22, 0.15);
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, 
            rgba(45, 80, 22, 0.12), 
            rgba(74, 124, 44, 0.12));
        color: var(--primary-green);
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(45, 80, 22, 0.2);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Kayan Şeritler */
    .scrolling-banner {
        padding: 12px 0;
    }
    
    .banner-content span {
        font-size: 1.2rem;
        padding: 0 35px;
        letter-spacing: 0.3px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 100vh;
        margin-top: 0;
    }
    
    .slide-content {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .btn-primary {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Sections */
    .section-header,
    .section-title {
        margin-bottom: 35px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .section-header h2,
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Page Headers */
    .page-header {
        padding: 60px 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    /* About Us Section */
    .about-us-section {
        padding: 50px 0;
    }
    
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-us-visual {
        order: -1;
    }
    
    .about-us-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .about-us-content p {
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
        margin: 30px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-features {
        gap: 12px;
    }
    
    .about-feature-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .about-feature-item svg {
        width: 20px;
        height: 20px;
    }
    
    .about-logo-container {
        padding: 30px;
        border-radius: 20px;
    }
    
    .about-logo {
        max-width: 200px;
    }
    
    .logo-decoration-1 {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }
    
    .logo-decoration-2 {
        width: 70px;
        height: 70px;
        bottom: -10px;
        right: -10px;
    }
    
    .logo-decoration-3 {
        width: 60px;
        height: 60px;
        right: -15px;
    }
    
    .about-badge {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 20px;
        border-radius: 15px;
        gap: 10px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-text strong {
        font-size: 1rem;
    }
    
    .badge-text span {
        font-size: 0.75rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        width: 320px;
        padding: 22px;
    }
    
    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .avatar-placeholder {
        font-size: 1.2rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.05rem;
    }
    
    .testimonial-info p {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonials-slider-wrapper::before,
    .testimonials-slider-wrapper::after {
        width: 60px;
    }
    
    /* Grids */
    .services-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Forms */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 30px 25px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-col h3 {
        font-size: 1.3rem;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    .footer-badges {
        gap: 8px;
    }
    
    .footer-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    /* CTA Modern */
    .cta-section-modern {
        padding: 60px 0;
    }
    
    .cta-modern-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }
    
    .cta-icon-wrapper {
        margin: 0 auto;
    }
    
    .cta-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon-circle svg {
        width: 36px;
        height: 36px;
    }
    
    .cta-modern-content h2 {
        font-size: 1.7rem;
    }
    
    .cta-modern-content > p {
        font-size: 1rem;
    }
    
    .cta-features-mini {
        justify-content: center;
    }
    
    .cta-features-mini span {
        font-size: 0.85rem;
        padding: 7px 14px;
    }
    
    .cta-button-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .btn-cta-modern {
        padding: 15px 28px;
        font-size: 1rem;
    }
    
    /* Corporate Page Responsive */
    .corporate-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .big-logo-container {
        padding: 30px;
    }
    
    .corporate-main-logo {
        max-width: 250px;
    }
    
    .corporate-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .corporate-content h2 {
        font-size: 1.8rem;
    }
    
    .corporate-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-large {
        grid-column: span 1;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-card {
        padding: 25px;
    }
    
    .expertise-icon {
        font-size: 2.8rem;
    }
    
    .cta-section .cta-box {
        padding: 40px 30px;
    }
    
    .cta-section .cta-box h3 {
        font-size: 1.8rem;
    }
    
    /* Catalog Page Mobile */
    .catalog-hero {
        padding: 70px 0 50px;
    }
    
    .catalog-hero h1 {
        font-size: 2.2rem;
    }
    
    .catalog-subtitle {
        font-size: 1.05rem;
    }
    
    .catalog-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .catalog-stat-item strong {
        font-size: 2rem;
    }
    
    .catalog-sticky-nav {
        top: 78px;
    }
    
    .catalog-nav-wrapper {
        justify-content: flex-start;
        padding: 12px 0;
    }
    
    .catalog-nav-link {
        min-width: 95px;
        padding: 10px 12px;
    }
    
    .catalog-nav-link .nav-icon {
        font-size: 1.4rem;
    }
    
    .catalog-nav-link .nav-text {
        font-size: 0.75rem;
    }
    
    .category-header {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .category-icon {
        font-size: 3.5rem;
    }
    
    .category-header-content h2 {
        font-size: 1.8rem;
    }
    
    .category-header-content > p {
        font-size: 0.95rem;
    }
    
    .category-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 7px 13px;
    }
    
    .catalog-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .catalog-product-card {
        border-radius: 12px;
    }
    
    .catalog-product-info {
        padding: 18px;
    }
    
    .catalog-product-info h3 {
        font-size: 1.05rem;
    }
    
    .product-desc {
        font-size: 0.85rem;
    }
    
    .product-specs span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    /* Region Cards */
    .region-card {
        padding: 25px 20px;
    }
    
    .region-card h3 {
        font-size: 1.3rem;
    }
    
    .region-card ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Logo */
    .logo img {
        height: 45px;
    }
    
    /* Kayan Şeritler */
    .scrolling-banner {
        padding: 10px 0;
    }
    
    .banner-content span {
        font-size: 1rem;
        padding: 0 25px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 100vh;
        min-height: 100vh;
    }
    
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .slider-dots {
        gap: 6px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    /* Sections */
    .section-header h2,
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 5px 14px;
    }
    
    /* Page Header */
    .page-header {
        padding: 50px 15px;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-us-section {
        padding: 40px 0;
    }
    
    .about-us-content h2 {
        font-size: 1.4rem;
    }
    
    .lead-text {
        font-size: 0.9rem;
    }
    
    .about-us-content p {
        font-size: 0.85rem;
    }
    
    .about-stats {
        gap: 15px;
        padding: 20px 0;
        margin: 25px 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-logo-container {
        padding: 25px;
    }
    
    .about-logo {
        max-width: 160px;
    }
    
    .about-badge {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    .badge-text strong {
        font-size: 0.9rem;
    }
    
    .badge-text span {
        font-size: 0.7rem;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        width: 280px;
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .avatar-placeholder {
        font-size: 1.1rem;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonials-slider-wrapper::before,
    .testimonials-slider-wrapper::after {
        width: 40px;
    }
    
    /* Forms & Contact */
    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    /* Grids */
    .product-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-col p {
        font-size: 0.9rem;
    }
    
    .footer-badges {
        gap: 6px;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 25px;
    }
    
    /* CTA Modern */
    .cta-section-modern {
        padding: 50px 0;
    }
    
    .cta-modern-box {
        padding: 30px 20px;
        border-radius: 20px;
        gap: 20px;
    }
    
    .cta-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .cta-icon-circle svg {
        width: 32px;
        height: 32px;
    }
    
    .cta-modern-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-modern-content > p {
        font-size: 0.9rem;
    }
    
    .cta-features-mini {
        gap: 8px;
    }
    
    .cta-features-mini span {
        font-size: 0.75rem;
        padding: 6px 11px;
    }
    
    .btn-cta-modern {
        padding: 13px 24px;
        font-size: 0.9rem;
    }
    
    /* Corporate Page */
    .corporate-content h2 {
        font-size: 1.5rem;
    }
    
    .corporate-features-list {
        gap: 10px;
    }
    
    .feature-list-item span {
        font-size: 0.85rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .expertise-card {
        padding: 20px;
    }
    
    .expertise-icon {
        font-size: 2.3rem;
    }
    
    .expertise-card h3 {
        font-size: 1.1rem;
    }
    
    .expertise-card p {
        font-size: 0.85rem;
    }
    
    .cta-section .cta-box {
        padding: 30px 20px;
    }
    
    .cta-section .cta-box h3 {
        font-size: 1.4rem;
    }
    
    .cta-section .cta-box p {
        font-size: 0.9rem;
    }
    
    /* Catalog Mobile */
    .catalog-hero {
        padding: 60px 0 40px;
    }
    
    .catalog-hero h1 {
        font-size: 1.7rem;
    }
    
    .catalog-badge {
        font-size: 0.75rem;
        padding: 7px 16px;
    }
    
    .catalog-subtitle {
        font-size: 0.95rem;
    }
    
    .catalog-stats {
        gap: 20px;
    }
    
    .catalog-stat-item strong {
        font-size: 1.7rem;
    }
    
    .catalog-stat-item span {
        font-size: 0.8rem;
    }
    
    .catalog-nav-link {
        min-width: 85px;
        padding: 8px 10px;
    }
    
    .catalog-nav-link .nav-icon {
        font-size: 1.3rem;
    }
    
    .catalog-nav-link .nav-text {
        font-size: 0.7rem;
    }
    
    .category-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-header-content h2 {
        font-size: 1.5rem;
    }
    
    .category-header-content > p {
        font-size: 0.85rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 11px;
    }
    
    .catalog-product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .catalog-product-info h3 {
        font-size: 1rem;
    }
    
    .product-desc {
        font-size: 0.8rem;
    }
    
    .product-specs span {
        font-size: 0.7rem;
    }
    
    .btn-view-details {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* Region Cards */
    .region-card {
        padding: 20px 15px;
    }
    
    .region-card h3 {
        font-size: 1.2rem;
    }
    
    .region-card ul li {
        font-size: 0.85rem;
    }
}
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    .badge-text strong {
        font-size: 0.9rem;
    }
    
    .badge-text span {
        font-size: 0.7rem;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        width: 300px;
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .avatar-placeholder {
        font-size: 1.1rem;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-slider-wrapper::before,
    .testimonials-slider-wrapper::after {
        width: 50px;
    }
    
    /* Corporate Page Responsive */
    .corporate-content h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .expertise-card {
        padding: 20px;
    }
    
    .expertise-icon {
        font-size: 2.5rem;
    }
    
    .expertise-card h3 {
        font-size: 1.1rem;
    }
    
    .cta-section .cta-box {
        padding: 30px 20px;
    }
    
    .cta-section .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-section .cta-box p {
        font-size: 1rem;
    }
    
    /* Catalog Mobile */
    .catalog-hero {
        padding: 60px 0 40px;
    }
    
    .catalog-hero h1 {
        font-size: 1.8rem;
    }
    
    .catalog-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .catalog-subtitle {
        font-size: 1rem;
    }
    
    .catalog-stats {
        gap: 20px;
    }
    
    .catalog-stat-item strong {
        font-size: 1.8rem;
    }
    
    .catalog-stat-item span {
        font-size: 0.85rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .region-card ul li {
        font-size: 0.85rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-padding-top: 100px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animasyonları için */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state için */
.loading-shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Pulse effect */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Card entrance animation */
.service-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
