:root {
    --primary-color: #37B34A;
    --secondary-color: #333;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info a:hover::before {
    left: 0;
}

.contact-info a i {
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info a:hover i {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.2);
}

.contact-info a span {
    position: relative;
    z-index: 1;
}

/* Sağ bölüm stilleri güncellendi */
.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Keşif Talep Formu Butonu */
.kesfet-btn {
    background: linear-gradient(45deg, #2a8c3a, #37B34A);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(55, 179, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.kesfet-btn i {
    font-size: 16px;
    transition: all 0.4s ease;
}

.kesfet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(55, 179, 74, 0.3);
    background: linear-gradient(45deg, #37B34A, #2a8c3a);
}

.kesfet-btn:hover i {
    transform: rotate(360deg);
}

.kesfet-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.kesfet-btn:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
}

/* Sosyal Medya İkonları */
.social-media {
    display: flex;
    gap: 12px;
    padding: 5px;
}

.social-media a {
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-media a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease;
}

.social-media .instagram::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-media .facebook::before {
    background: #4267B2;
}

.social-media .youtube::before {
    background: #FF0000;
}

.social-media a:hover::before {
    opacity: 1;
}

.social-media a i {
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.social-media a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-media a:hover i {
    transform: scale(1.2);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.kesfet-btn {
    animation: pulse 2s infinite;
}

.kesfet-btn:hover {
    animation: none;
}

/* Header ve Navbar Stilleri */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navbar ve Dropdown Stilleri */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px;
    z-index: 100;
}

.dropdown-menu a {
    padding: 12px 16px;
    color: var(--secondary-color);
    display: block;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.dropdown-menu a:hover {
    background: rgba(55, 179, 74, 0.05);
    color: var(--primary-color);
    padding-left: 20px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Animation for dropdown items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
}

.dropdown:hover .dropdown-menu a:nth-child(1) { animation-delay: 0.1s; }
.dropdown:hover .dropdown-menu a:nth-child(2) { animation-delay: 0.15s; }
.dropdown:hover .dropdown-menu a:nth-child(3) { animation-delay: 0.2s; }
.dropdown:hover .dropdown-menu a:nth-child(4) { animation-delay: 0.25s; }
.dropdown:hover .dropdown-menu a:nth-child(5) { animation-delay: 0.3s; }

/* Active state */
.main-nav ul li a.active {
    color: var(--primary-color);
}

/* Hover line effect for main menu items */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 80%;
}

/* Dropdown arrow bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

.dropdown:hover .dropdown-toggle i {
    animation: bounce 1s infinite;
}

/* Scroll Efekti */
.main-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Slider temel stilleri */
.hero-slider {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

/* Arka plan stilleri */
.slider-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide-bg.active {
    opacity: 1;
}

/* Sabit içerik stilleri */
.slider-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.text-content {
    max-width: 600px;
    color: white;
    text-align: left;
    margin-left: 120px;
    position: relative;
    z-index: 3;
}

.text-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.button-group a {
    text-decoration: none;
}

.primary-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #37B34A 0%, #2a8c3a 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.outline-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-button {
    background: var(--primary-color);
    border: none;
    color: white;
}

.outline-button {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 35px;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.whatsapp-float a {
    color: var(--white);
}

/* Language Selector */
.language-selector {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language-selector img {
    width: 20px;
}

/* Mega Menü Stilleri */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-radius: 0 0 15px 15px;
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mega-menu-column {
    padding: 15px;
}

.mega-menu-column h3 {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-column h3 i {
    color: var(--primary-color);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-menu-column ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.menu-content {
    display: flex;
    flex-direction: column;
}

.menu-content .title {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.menu-content .description {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.mega-menu-column ul li a:hover {
    background: rgba(55, 179, 74, 0.05);
    transform: translateX(5px);
}

.mega-menu-column ul li a:hover .menu-icon {
    transform: rotate(360deg);
    background: #2a8c3a;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Çözümler menüsü için özel stiller */
.solutions-menu .menu-icon {
    background: #2a8c3a;
}

.solutions-menu .mega-menu-column h3 i {
    color: #2a8c3a;
}

/* Animasyon için keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-column ul li {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

.mega-menu-column ul li:nth-child(1) { animation-delay: 0.1s; }
.mega-menu-column ul li:nth-child(2) { animation-delay: 0.2s; }
.mega-menu-column ul li:nth-child(3) { animation-delay: 0.3s; }
.mega-menu-column ul li:nth-child(4) { animation-delay: 0.4s; }

/* Yeni Dropdown Menü Stilleri */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
}

.dropdown:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown ul {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
}

.simple-dropdown ul li {
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .simple-dropdown ul li {
    opacity: 1;
    transform: translateX(0);
}

.simple-dropdown ul li a {
    color: var(--secondary-color);
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.simple-dropdown ul li a:hover {
    background: rgba(55, 179, 74, 0.05);
    color: var(--primary-color);
    padding-left: 30px;
}

.simple-dropdown ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: all 0.2s ease;
}

.simple-dropdown ul li a:hover::before {
    width: 3px;
}

/* Dropdown ok işareti animasyonu */
.dropdown > a .fas {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fas {
    transform: rotate(180deg);
}

/* Her menü öğesi için kademeli animasyon */
.simple-dropdown ul li:nth-child(1) { transition-delay: 0.05s; }
.simple-dropdown ul li:nth-child(2) { transition-delay: 0.1s; }
.simple-dropdown ul li:nth-child(3) { transition-delay: 0.15s; }
.simple-dropdown ul li:nth-child(4) { transition-delay: 0.2s; }
.simple-dropdown ul li:nth-child(5) { transition-delay: 0.25s; }

/* Çözümler menüsü için özel genişlik */
.dropdown:nth-child(3) .simple-dropdown {
    min-width: 280px;
}

/* Minimal Dropdown Menü Stilleri */
.minimal-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease-in-out;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 4px;
    z-index: 1000;
    margin-top: 5px;
    padding: 10px 0;
}

.minimal-dropdown.wide {
    min-width: 300px;
}

.minimal-dropdown ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.minimal-dropdown ul li {
    padding: 0;
    margin: 0;
}

.minimal-dropdown ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.minimal-dropdown ul li a .link-text {
    position: relative;
    padding-left: 0;
    transition: all 0.2s ease;
}

.minimal-dropdown ul li a i {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.minimal-dropdown ul li a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.minimal-dropdown ul li a:hover .link-text {
    padding-left: 10px;
}

.minimal-dropdown ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Dropdown açılma animasyonu */
.dropdown:hover .minimal-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ana menü ok işareti */
.dropdown > a .fas.fa-chevron-down {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.dropdown:hover > a .fas.fa-chevron-down {
    transform: rotate(180deg);
}

/* Kademeli animasyon için */
.minimal-dropdown ul li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.dropdown:hover .minimal-dropdown ul li {
    opacity: 1;
    transform: translateY(0);
}

.minimal-dropdown ul li:nth-child(1) { transition-delay: 0.05s; }
.minimal-dropdown ul li:nth-child(2) { transition-delay: 0.1s; }
.minimal-dropdown ul li:nth-child(3) { transition-delay: 0.15s; }
.minimal-dropdown ul li:nth-child(4) { transition-delay: 0.2s; }
.minimal-dropdown ul li:nth-child(5) { transition-delay: 0.25s; }

/* Hover efekti için ek stil */
.minimal-dropdown ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.minimal-dropdown ul li a:hover::before {
    transform: scaleY(1);
}

/* Modern Dropdown Styles */
.modern-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 250px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-top: 15px;
}

.modern-dropdown.solutions {
    min-width: 300px;
}

.modern-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.modern-dropdown ul {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.modern-dropdown ul li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.modern-dropdown ul li a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.modern-dropdown ul li a span {
    position: relative;
    z-index: 1;
}

.modern-dropdown ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #2a8c3a);
    opacity: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 0;
}

/* Hover Effects */
.modern-dropdown ul li a:hover {
    color: white;
    padding-left: 25px;
}

.modern-dropdown ul li a:hover::before {
    opacity: 1;
}

/* Dropdown Animation */
.dropdown:hover .modern-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .modern-dropdown ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for List Items */
.dropdown:hover .modern-dropdown ul li:nth-child(1) { transition-delay: 0.1s; }
.dropdown:hover .modern-dropdown ul li:nth-child(2) { transition-delay: 0.15s; }
.dropdown:hover .modern-dropdown ul li:nth-child(3) { transition-delay: 0.2s; }
.dropdown:hover .modern-dropdown ul li:nth-child(4) { transition-delay: 0.25s; }
.dropdown:hover .modern-dropdown ul li:nth-child(5) { transition-delay: 0.3s; }

/* Main Nav Dropdown Arrow Animation */
.dropdown > a .fas.fa-chevron-down {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fas.fa-chevron-down {
    transform: rotate(180deg);
}

/* Active State */
.modern-dropdown ul li a.active {
    color: white;
    background: linear-gradient(45deg, var(--primary-color), #2a8c3a);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modern-dropdown {
        left: 0;
        transform: translateX(0) translateY(20px);
        width: 100%;
        margin-top: 0;
    }

    .modern-dropdown::before {
        display: none;
    }

    .dropdown:hover .modern-dropdown {
        transform: translateX(0) translateY(0);
    }
}

/* New Dropdown Styles */
.new-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 320px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 15px;
    overflow: hidden;
}

.new-dropdown.solutions {
    min-width: 400px;
}

.dropdown-inner {
    padding: 20px;
}

.dropdown-header {
    color: var(--primary-color);
    font-size: 13px;
}

/* Modern Sizi Arayalım Butonu */
.neo-call-button {
    position: relative;
    width: 180px;
    height: 64px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        -5px -5px 15px rgba(255, 255, 255, 0.8),
        5px 5px 15px rgba(0, 0, 0, 0.1);
}

.button-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    z-index: 2;
    gap: 15px;
}

/* İkon Bölümü */
.icon-section {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #37B34A, #2a8c3a);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.icon-section i {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Bildirim Noktası */
.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

/* Metin Bölümü */
.text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-text {
    color: #2a8c3a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.call-text:first-child {
    font-size: 12px;
    opacity: 0.8;
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #37B34A, #2a8c3a);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Hover Efektleri */
.neo-call-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sadece Sizi Arayalım butonu için basit tasarım */
.call-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-button .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-button i {
    font-size: 14px;
}

.call-button:hover {
    background: #2a8c3a;
    transform: translateY(-2px);
}

.call-button:active {
    transform: translateY(0);
}

/* Hemen Teklif Al Butonu */
.quote-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #37B34A 0%, #2a8c3a 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(55, 179, 74, 0.2);
}

.quote-button i {
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 179, 74, 0.3);
    background: linear-gradient(135deg, #2a8c3a 0%, #37B34A 100%);
}

.quote-button:active {
    transform: translateY(0);
}

/* Ücretsiz Keşif Talebi Butonu */
.discovery-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discovery-button i {
    font-size: 16px;
}

.discovery-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.discovery-button:active {
    transform: translateY(0);
}

/* Ortak Buton Animasyonları */
@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.quote-button:hover i,
.discovery-button:hover i {
    animation: buttonPulse 1s infinite;
}

/* Slider içindeki buton stilleri */
.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.primary-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #37B34A 0%, #2a8c3a 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button i {
    font-size: 16px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 179, 74, 0.3);
}

.outline-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Modern Sizi Arayalım Butonu */
.nav-call-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 28px;
    background: #37B34A;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.btn-content a {
    text-decoration: none;
    color: #ffffff; /* Varsayılan yeşil renk */
}

.icon-box {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #37B34A;
    border-radius: 50%;
}

.icon-box i {
    font-size: 14px;
    color: white;
    animation: phoneWave 1s ease infinite;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.icon-box {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.icon-box i {
    font-size: 14px;
    color: white;
    animation: phoneWave 1s ease infinite;
}

/* Telefon dalgalanma animasyonu */
@keyframes phoneWave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Halka animasyonu */
.ring-animation {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Arka plan animasyonu */
.btn-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a8c3a, #37B34A);
    transition: all 0.5s ease;
    z-index: 1;
}

/* Hover efektleri */
.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 179, 74, 0.3);
}

.nav-call-btn:hover .btn-background {
    left: 0;
}

.nav-call-btn:hover .icon-box {
    background: rgba(255, 255, 255, 0.3);
}

/* Tıklama efekti */
.nav-call-btn:active {
    transform: scale(0.97);
}

/* Float animasyonu */
.nav-call-btn {
    animation: buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Shine efekti */
.nav-call-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .nav-call-btn {
        padding: 10px 20px;
    }
    
    .icon-box {
        width: 24px;
        height: 24px;
    }
    
    .btn-content {
        font-size: 13px;
    }
}

.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(55, 179, 74, 0.2), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #37B34A, #2a8c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: rotate(360deg);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }
}

.products-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(55, 179, 74, 0.2), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.product-content {
    padding: 30px;
    position: relative;
}

.product-content .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2a8c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.product-content .icon i {
    font-size: 24px;
    color: white;
}

.product-card:hover .icon {
    transform: rotateY(180deg);
}

.product-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    gap: 15px;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }
}

.work-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.work-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(55, 179, 74, 0.2), transparent);
}

.work-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-badge {
    display: inline-block;
    background: rgba(55, 179, 74, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.work-process-header h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.work-process-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    padding: 20px 0;
}

.process-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(55, 179, 74, 0.15);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2a8c3a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.step-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: 0;
}

/* Hover Efektleri */
.process-step:hover .step-number {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-step:hover .step-icon {
    transform: rotate(360deg);
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .process-steps {
        justify-content: center;
    }

    .process-step {
        flex: 0 0 calc(50% - 30px);
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .work-process {
        padding: 60px 0;
    }

    .work-process-header h2 {
        font-size: 32px;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .step-content {
        padding: 25px;
    }
}

/* Quick Stats bölümü için yeni stiller */
.quick-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.quick-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(128, 128, 128, 0.2), transparent);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 40px;
    padding: 0 15px;
}

.stat-card {
    flex: 1;
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid rgba(55, 179, 74, 0.1);
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #37B34A, #2a8c3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-icon-wrapper i {
    font-size: 20px;
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 5px;
}

.stat-number .number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #37B34A, #2a8c3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-number .plus {
    font-size: 18px;
    font-weight: 600;
    color: #2a8c3a;
}

.stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Hover efektleri */
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(55, 179, 74, 0.15);
}

.stat-card:hover .stat-icon-wrapper {
    transform: rotate(360deg);
}

/* Progress bar efekti */
.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #37B34A, #2a8c3a);
    transition: width 0.6s ease;
    border-radius: 0 0 16px 16px;
}

.stat-card:hover .stat-progress {
    width: 100%;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 20px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .stat-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .stat-content {
        justify-content: center;
    }
    
    .stat-info {
        text-align: left;
    }
}

/* Animasyon */
@keyframes countUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-number {
    animation: countUp 0.5s ease forwards;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(55, 179, 74, 0.2), transparent);
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    overflow-x: hidden;
    padding: 20px 0;
    justify-content: center;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    max-width: 380px;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), #2a8c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
}

.quote-icon i {
    color: white;
    font-size: 12px;
}

.testimonial-content {
    position: relative;
    padding-left: 35px;
}

.testimonial-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #2a8c3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon-wrapper i {
    font-size: 20px;
    color: white;
}

.author-info h4 {
    color: var(--secondary-color);
    font-size: 16px;
    margin: 0 0 5px 0;
}

.author-info span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 4px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 320px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
}

/* Footer Styles - Independent */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-about p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #37B34A;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #37B34A;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #37B34A;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37B34A;
    font-size: 14px;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: #37B34A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Newsletter Form */
.footer-newsletter {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    background: #37B34A;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #2a8c3a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }
}