/*
Theme Name: Vinç Kiralama
Description: Vinç kiralama hizmeti sunan firmalar için özel olarak tasarlanmış modern, SEO uyumlu WordPress teması. Mobil cihazlara tam uyumlu, Elementor destekli.
Author: Vinç Kiralama Team
Version: 1.0.0
Text Domain: vinc-kiralama
Domain Path: /languages
License: GPL v2 or later
Tags: business, responsive, elementor, seo-friendly, mobile-friendly, turkish
*/

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-yellow: #fbbf24;
    --dark-gray: #374151;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES - TEMİZLENMİŞ ===== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Header Top Bar */
.header-top {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.whatsapp-link {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s;
}

.whatsapp-link:hover {
    color: var(--accent-yellow);
}

.service-time {
    color: var(--white);
    font-size: 12px;
}

/* Main Header */
.header-main {
    padding: 15px 0;
    background: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

/* Site Branding */
.site-branding {
    flex-shrink: 0;
}

/* Desktop Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: block;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-1px);
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-phone-btn,
.mobile-whatsapp-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-phone-btn {
    background: var(--primary-blue);
    color: var(--white);
}

.mobile-phone-btn:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
}

.mobile-whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.mobile-whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Modern Hamburger Menu */
.mobile-menu-toggle {
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: var(--light-gray);
    border-color: var(--primary-blue);
}

/* 6 noktalı grid pattern (2x3) */
.hamburger-line {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

/* İlk sütun */
.mobile-menu-toggle .hamburger-line:nth-child(1) {
    top: 10px;
    left: 12px;
}

.mobile-menu-toggle .hamburger-line:nth-child(2) {
    top: 20px;
    left: 12px;
}

.mobile-menu-toggle .hamburger-line:nth-child(3) {
    top: 30px;
    left: 12px;
}

/* İkinci sütun */
.mobile-menu-toggle .hamburger-line:nth-child(4) {
    top: 10px;
    right: 12px;
}

.mobile-menu-toggle .hamburger-line:nth-child(5) {
    top: 20px;
    right: 12px;
}

.mobile-menu-toggle .hamburger-line:nth-child(6) {
    top: 30px;
    right: 12px;
}

/* Active state - X şekline dönüşüm */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) scale(1.5);
    top: 18px;
    left: 18px;
    width: 14px;
    height: 2px;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2),
.mobile-menu-toggle.active .hamburger-line:nth-child(3),
.mobile-menu-toggle.active .hamburger-line:nth-child(4),
.mobile-menu-toggle.active .hamburger-line:nth-child(5) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(6) {
    transform: rotate(-45deg) scale(1.5);
    top: 18px;
    right: 18px;
    width: 14px;
    height: 2px;
    border-radius: 1px;
}

/* Desktop/Mobile Visibility Control */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 1200px) {
    .header-content {
        gap: 15px;
    }
    
    .main-navigation ul {
        gap: 20px;
    }
    
    .main-navigation a {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .header-contact-info {
        gap: 20px;
    }
    
    .header-contact-info .contact-item span {
        display: none;
    }
    
    .header-contact-info .contact-item i {
        font-size: 16px;
    }
    
    .main-navigation ul {
        gap: 15px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Desktop elementleri gizle */
    .desktop-only {
        display: none !important;
    }
    
    /* Mobil elementleri göster */
    .mobile-only {
        display: flex !important;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .mobile-header-actions {
        gap: 8px;
    }
    
    .mobile-phone-btn,
    .mobile-whatsapp-btn,
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 10px 0;
    }
    
    .mobile-header-actions {
        gap: 6px;
    }
    
    .mobile-phone-btn,
    .mobile-whatsapp-btn,
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== LOGO STYLES - Gelişmiş Logo Sistemi ===== */
.site-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--secondary-blue);
}

/* Logo Düzen Stilleri */
.logo-style-horizontal {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.logo-style-vertical {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.logo-style-icon-only .logo-text-wrapper {
    display: none;
}

.logo-style-text-only i {
    display: none;
}

/* Logo Metin Wrapper */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-style-horizontal .logo-text-wrapper {
    align-items: flex-start;
}

.logo-style-vertical .logo-text-wrapper {
    align-items: center;
    text-align: center;
}

/* Ana Logo Metni */
.logo-main-text {
    font-weight: 700;
    font-size: 1em;
    margin: 0;
    line-height: 1.1;
}

/* Logo Alt Metni */
.logo-subtitle {
    font-size: 0.4em;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo Gölge Efekti */
.logo-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-shadow i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Logo İkon Stilleri */
.site-logo i {
    color: var(--accent-yellow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Custom Logo Görsel için stilleri */
.custom-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.05);
}

/* ===== MOBILE NAVIGATION STYLES - Tamamen Yenilendi ===== */
.mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-navigation.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

/* Mobile Navigation Content */
.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-navigation.active .mobile-nav-content {
    transform: translateX(0);
}

/* Mobile Header */
.mobile-nav-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.mobile-nav-logo i {
    color: var(--accent-yellow);
    font-size: 20px;
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

/* Mobile Navigation Body */
.mobile-nav-body {
    padding: 0;
}

/* Section Titles */
.mobile-nav-title {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    padding: 0 20px;
    position: relative;
}

.mobile-nav-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
}

/* Main Navigation */
.mobile-main-nav {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Mobile Menu List - Yenilendi */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    background: var(--white);
}

.mobile-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-list a:hover::before,
.mobile-menu-list a.current-menu-item::before {
    transform: scaleY(1);
}

.mobile-menu-list a:hover {
    background: rgba(30, 58, 138, 0.05);
    color: var(--primary-blue);
    padding-left: 30px;
}

.mobile-menu-list a i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.mobile-menu-list a:hover i {
    color: var(--accent-yellow);
    transform: scale(1.2);
}

/* Quick Actions Section */
.mobile-quick-actions {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-action-btn.phone-btn {
    border-color: var(--primary-blue);
}

.quick-action-btn.phone-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.quick-action-btn.phone-btn:hover .action-icon {
    background: var(--white);
    color: var(--primary-blue);
}

.quick-action-btn.whatsapp-btn {
    border-color: #25D366;
}

.quick-action-btn.whatsapp-btn:hover {
    background: #25D366;
    color: var(--white);
}

.quick-action-btn.whatsapp-btn:hover .action-icon {
    background: var(--white);
    color: #25D366;
}

.quick-action-btn.contact-btn {
    border-color: var(--accent-yellow);
}

.quick-action-btn.contact-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.quick-action-btn.contact-btn:hover .action-icon {
    background: var(--white);
    color: var(--accent-yellow);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-btn .action-icon {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
}

.whatsapp-btn .action-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-btn .action-icon {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-yellow);
}

.action-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.action-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.action-subtitle {
    font-size: 13px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

/* Contact Info Section */
.mobile-contact-section {
    padding: 25px 0 30px;
}

.mobile-contact-info {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-yellow);
}

.contact-info-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive Mobile Navigation */
@media (max-width: 480px) {
    .mobile-nav-content {
        width: 90%;
    }
    
    .mobile-nav-header {
        padding: 20px 15px;
    }
    
    .quick-action-buttons {
        padding: 0 15px;
    }
    
    .quick-action-btn {
        padding: 15px;
    }
    
    .action-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .action-title {
        font-size: 15px;
    }
    
    .mobile-contact-info {
        padding: 0 15px;
    }
}

@media (max-width: 350px) {
    .mobile-nav-content {
        width: 95%;
    }
    
    .mobile-nav-logo {
        font-size: 16px;
    }
    
    .mobile-nav-close {
        width: 35px;
        height: 35px;
    }
    
    .quick-action-btn {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }
    
    .action-content {
        align-items: center;
    }
}

/* Mobile Menu Animation Improvements */
.mobile-menu-list a {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInFromRight 0.3s ease forwards;
}

.mobile-menu-list li:nth-child(1) a { animation-delay: 0.1s; }
.mobile-menu-list li:nth-child(2) a { animation-delay: 0.15s; }
.mobile-menu-list li:nth-child(3) a { animation-delay: 0.2s; }
.mobile-menu-list li:nth-child(4) a { animation-delay: 0.25s; }
.mobile-menu-list li:nth-child(5) a { animation-delay: 0.3s; }
.mobile-menu-list li:nth-child(6) a { animation-delay: 0.35s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Quick Action Buttons Animation */
.quick-action-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInFromBottom 0.4s ease forwards;
}

.quick-action-btn:nth-child(1) { animation-delay: 0.4s; }
.quick-action-btn:nth-child(2) { animation-delay: 0.5s; }
.quick-action-btn:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO SLIDER STYLES - Düzeltilmiş ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide geçiş animasyonları düzeltildi */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Aktif slide */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide'lar arası geçiş için fade-out effect */
.slide:not(.active) {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition-delay: 0s;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
    pointer-events: none;
}

/* Slide content z-index düzeltildi */
.slide-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Yazı animasyonları düzeltildi */
.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.4s;
}

/* Aktif slide'da yazılar görünür */
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Pasif slide'larda yazılar gizli */
.slide:not(.active) .slide-content h1,
.slide:not(.active) .slide-content p,
.slide:not(.active) .slide-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0s;
}

.slide-buttons .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation Buttons - Z-index düzeltildi */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 20px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots - Z-index düzeltildi */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    pointer-events: auto;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active,
.dot:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: scale(1.2);
}

/* SERVICES SECTION - Düzeltilmiş ve güzel kutu tasarımı */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), #f59e0b);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    transform: scale(1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    color: var(--text-dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-card .btn {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-card .btn:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* ===== FOOTER STYLES - Modern ve Profesyonel Tasarım ===== */
.site-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Company Info Section */
.footer-section.company-info {
    padding-right: 20px;
}

.footer-logo h3 {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h3::before {
    content: "🏗️";
    font-size: 1.5rem;
}

.company-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-contact-info .contact-item i {
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Footer Section Titles */
.footer-section h4 {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.footer-links a::before {
    content: '▶';
    color: var(--accent-yellow);
    font-size: 0.6rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact CTA Section */
.footer-section.contact-cta h4 {
    margin-bottom: 25px;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-cta-btn.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.footer-cta-btn.whatsapp-btn:hover {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.footer-cta-btn.call-btn {
    background: transparent;
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.footer-cta-btn.call-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Footer Features */
.footer-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.footer-features .feature-item i {
    width: 18px;
    height: 18px;
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

/* Float Buttons */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 16px;
}

.back-to-top-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Footer Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section.company-info {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section.company-info {
        grid-column: 1;
        margin-bottom: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
    }
    
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .back-to-top-btn {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-cta-buttons {
        gap: 10px;
    }
    
    .footer-cta-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}