:root {
    --primary-blue: #007bff;
    --dark-blue: #0056b3;
    --light-blue: #e3f2fd;
    --dark-gray: #2c3e50;
    --light-gray: #f8f9fa;
    --animation-duration: 0.5s;
    --mobile-font-size: 16px;
    --tablet-font-size: 18px;
}

/* Mobil öncelikli CSS değişkenleri */
@media (max-width: 768px) {
    :root {
        --animation-duration: 0.3s;
        --mobile-font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --animation-duration: 0.4s;
        --tablet-font-size: 16px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: #000000;
    background: linear-gradient(135deg, #000000 0%, #0f20d8 50%, #667eea 100%);
    position: relative;
    font-size: var(--mobile-font-size);
}

/* Mobil cihazlarda daha hızlı animasyonlar */
@media (max-width: 768px) {
    body {
        font-size: var(--mobile-font-size);
    }
    
    /* Mobil cihazlarda daha hızlı geçişler */
    * {
        transition-duration: var(--animation-duration) !important;
    }
    
    /* Mobil cihazlarda daha az animasyon */
    .feature-card:hover .feature-icon {
        transform: scale(1.05) !important;
    }
    
    /* Mobil cihazlarda daha küçük butonlar */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Mobil cihazlarda daha kompakt navbar */
    .navbar {
        padding: 0.5rem 1rem !important;
    }
    
    /* Mobil cihazlarda daha hızlı sidebar */
    .sidebar-custom {
        transition: transform var(--animation-duration) ease-in-out !important;
        width: 280px !important;
        right: -280px !important;
    }
    
    .sidebar-custom.show {
        right: 0 !important;
    }
    
    /* Mobil cihazlarda sidebar overlay daha hızlı */
    .sidebar-overlay {
        transition: all var(--animation-duration) ease-in-out !important;
    }
}

/* Tablet optimizasyonları */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: var(--tablet-font-size);
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem !important;
        font-size: 1.1rem !important;
    }
}

/* Global font consistency */
* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Mobil cihazlarda performans optimizasyonları */
@media (max-width: 768px) {
    /* Mobil cihazlarda daha az blur efektleri */
    .hero-section::before,
    .hero-section::after {
        filter: blur(2px) !important;
    }
    
    /* Mobil cihazlarda daha basit animasyonlar */
    .business-bg-elements > div {
        animation: float 4s ease-in-out infinite !important;
    }
    
    /* Mobil cihazlarda daha küçük parçacıklar */
    .particle {
        width: 4px !important;
        height: 4px !important;
    }
    
    /* Mobil cihazlarda daha az glow efekti */
    .glow-orb {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
    }
}

/* Türkiye Haritası Arka Plan */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* İşletmeler sayfası için harita arka planını gizle */
body.isletme-page::before {
    display: none;
}

/* İşletmeler sayfası için özel stiller */
body.isletme-page .hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Business background elements animation - Mobil optimizasyonu */
.business-bg-elements > div {
    animation: float 6s ease-in-out infinite;
}

.business-bg-elements > div:nth-child(2) {
    animation-delay: 2s;
}

.business-bg-elements > div:nth-child(3) {
    animation-delay: 4s;
}

.business-bg-elements > div:nth-child(4) {
    animation-delay: 1s;
}

.business-bg-elements > div:nth-child(5) {
    animation-delay: 3s;
}

.business-bg-elements > div:nth-child(6) {
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

/* Mobil cihazlarda daha basit float animasyonu */
@media (max-width: 768px) {
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .business-bg-elements > div {
        animation: float 4s ease-in-out infinite;
    }
}

/* İşletmeler sayfası için özel hero content */
body.isletme-page .hero-section .hero-content {
    position: relative;
    z-index: 3;
}

body.isletme-page .hero-section h1 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.isletme-page .hero-section .lead {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* İşletmeler sayfası için özel buton stilleri */
body.isletme-page .hero-section .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
    transition: all var(--animation-duration) ease;
}

body.isletme-page .hero-section .btn-primary:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

/* Türkiye Haritası SVG */
.turkey-map-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.18;
    pointer-events: none;
    background: #000000;
}

.turkey-map-bg svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: translateY(80px); /* Ana transform değeri burada ayarlanıyor */
}

.turkey-map-bg path {
    stroke: #fff;
    stroke-width: 0.4;
    fill: none;
    transition: stroke-width 0.3s ease, stroke-opacity 0.3s ease;
    stroke-opacity: 0.7;
}

/* Responsive styles for Turkey map background */
@media (max-width: 992px) {
    .turkey-map-bg {
        opacity: 0.22; /* Slightly increase opacity for better visibility on medium screens */
    }
    
    .turkey-map-bg svg {
        transform: translateY(60px) scale(1.1); /* Adjusted positioning for better display */
        transform-origin: center center;
    }
}

@media (max-width: 768px) {
    .turkey-map-bg {
        opacity: 0.25; /* Further increase opacity for better visibility on small screens */
    }
    
    .turkey-map-bg svg {
        transform: translateY(40px) scale(1.2); /* Adjusted positioning for better display on tablets */
        transform-origin: center center;
    }
}

@media (max-width: 480px) {
    .turkey-map-bg {
        opacity: 0.28; /* Maximum opacity for very small screens */
    }
    
    .turkey-map-bg svg {
        transform: translateY(30px) scale(1.3); /* Better positioning for mobile devices */
        transform-origin: center center;
    }
    
    .turkey-map-bg path {
        stroke-width: 0.6; /* Increase stroke width for better visibility on small screens */
    }
}

/* Footer and Button Styles */
.footer-brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-desc-text {
    font-size: 1rem;
    opacity: 0.85;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-copyright {
    font-size: 0.95rem;
    opacity: 0.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-mail-link {
    display: inline-block;
    padding: 10px 28px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    transition: background 0.2s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.back-to-top-btn {
    width: 45px;
    height: 45px;
}

.back-to-top-icon {
    font-size: 1.2rem;
}

/* Mobile Optimization Styles */
@media (max-width: 768px) {
    h1, .display-4 {
        font-size: 2.2rem !important; /* Smaller heading size for mobile */
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    .lead {
        font-size: 1.1rem !important; /* Adjusted lead text size */
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .btn {
        padding: 10px 20px; /* Slightly smaller padding for buttons */
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem; /* Smaller brand text */
    }
    
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section {
        padding: 40px 0; /* Reduced section padding */
    }
    
    .feature-icon {
        width: 60px; /* Smaller feature icons */
        height: 60px;
        font-size: 1.6rem;
    }
    
    .section-title {
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        margin-bottom: 30px;
        font-size: 1rem !important;
    }
    
    /* Mobile Footer Font Adjustments */
    .footer-brand-text {
        font-size: 1.15rem;
    }
    
    .footer-desc-text {
        font-size: 0.92rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-mail-link {
        font-size: 0.92rem;
        padding: 8px 18px;
        background: #000;
    }
    
    .back-to-top-btn {
        width: 42px;
        height: 42px;
    }
    
    .back-to-top-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0 !important; /* Further reduced padding */
        min-height: 80vh; /* Smaller minimum height */
    }
    
    h1, .display-4 {
        font-size: 1.9rem !important; /* Even smaller heading for small devices */
    }
    
    h2 {
        font-size: 1.6rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        width: 100%; /* Full width buttons on small screens */
        margin-bottom: 10px;
    }
    
    .step-plain {
        padding: 0 10px;
        min-width: 160px;
    }
    
    .step-plain h4 {
        font-size: 1.2rem;
    }
    
    .step-plain p {
        font-size: 0.95rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .footer .logo-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Mobile Footer Font Adjustments */
    .footer-brand-text {
        font-size: 1rem;
    }
    
    .footer-desc-text {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .footer-mail-link {
        font-size: 0.85rem;
        padding: 7px 12px;
        background: #000;
    }
    
    .back-to-top-btn {
        width: 40px;
        height: 40px;
    }
    
    .back-to-top-icon {
        font-size: 1rem;
    }

    /* Added mobile-specific styles */
    .mobile-full-width {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    /* Improved navbar toggle spacing */
    .navbar-toggler {
        margin-right: -8px;
        padding: 6px 10px;
    }
    
    /* Better spacing for collapsed navbar menu items */
    #navbarNav {
        margin-top: 10px;
        padding: 10px 0;
        background: rgba(0, 0, 0, 0.98);
        border-radius: 8px;
        z-index: 1030;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Dropdown styling */
    .dropdown-menu {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        border: none;
        padding: 0.5rem 0;
        display: none; /* Default to hidden */
    }
    
    .dropdown-menu.show {
        display: block; /* Only show when .show class is applied */
    }
    
    .dropdown-item {
        padding: 0.6rem 1.5rem;
        transition: background-color 0.2s;
    }
    
    .dropdown-item:hover {
        background-color: rgba(0, 123, 255, 0.1);
    }
    
    /* Custom style for the dropdown arrow */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.5em;
        vertical-align: 0.15em;
        content: "";
        border-top: 0.4em solid;
        border-right: 0.4em solid transparent;
        border-bottom: 0;
        border-left: 0.4em solid transparent;
    }
    
    /* Styling for mobile dropdown */
    @media (max-width: 991px) {
        .dropdown-menu {
            display: flex !important;
            flex-direction: column;
            align-items: stretch;
            width: 100%;
            min-width: 0;
            left: 0 !important;
            right: 0 !important;
            margin: 0 !important;
            border-radius: 10px;
            box-shadow: none;
            background: rgba(255,255,255,0.08);
            padding: 0;
            position: static;
            max-height: none;
            overflow: visible;
            backdrop-filter: blur(10px);
        }
        
        .dropdown-menu.show {
            display: flex !important;
            animation: dropdownSlideDown 0.3s ease-out;
        }
        
        @keyframes dropdownSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dropdown-item {
            width: 100%;
            text-align: left;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            background: transparent;
            color: #fff;
            font-size: 1.05rem;
            border-radius: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 0;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            color: white !important;
            padding-left: 2rem;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }

        /* Dropdown toggle arrow animation */
        .nav-item.dropdown .nav-link::after {
            transition: transform 0.3s ease;
        }
        
        .nav-item.dropdown .nav-link[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }
    }
    
    #navbarNav .nav-item {
        margin: 5px 0;
    }
    
    #navbarNav .nav-link {
        padding: 10px 20px;
        text-align: center;
        border-radius: 5px;
        transition: background-color 0.2s;
    }
    
    /* Ensure proper spacing for dropdown toggle */
    .nav-item.dropdown .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    /* Add visual indicator for mobile dropdown */
    @media (max-width: 991px) {
        .nav-item.dropdown .nav-link::after {
            content: '▼';
            margin-left: 8px;
            transition: transform 0.3s ease;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .nav-item.dropdown .nav-link[aria-expanded="true"]::after {
            transform: rotate(180deg);
            color: #007bff;
        }
    }
    
    #navbarNav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Make touch targets larger for better mobile interaction */
    .btn, 
    .nav-link,
    .navbar-toggler {
        min-height: 44px; /* Apple's recommended minimum tap target size */
    }
    
    /* Turkish flag responsive styling */
    .footer img[alt="Türk Bayrağı"] {
        width: 20px;
        margin-right: 5px;
    }
    
    /* Give some extra space at the bottom on mobile to prevent footer from being cut off */
    body {
        padding-bottom: 20px;
    }
    
    /* Improve tap targets for icons */
    .feature-icon {
        min-width: 50px;
        min-height: 50px;
    }
    
    /* Prevent zooming issues on input focus */
    input, select, textarea {
        font-size: 16px;
    }
    
    /* Better highlight for active elements */
    a:active, button:active {
        opacity: 0.8;
        transition: opacity 0.1s;
    }
    
    /* Faster transitions for mobile */
    .btn, .nav-link {
        transition-duration: 0.2s;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    background: transparent;
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Hero section arka plan animasyonları kaldırıldı */
.hero-section::before,
.hero-section::after {
    display: none !important;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-blue) !important;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navbar toggler styling for mobile */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sidebar Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-custom {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(20px);
    z-index: 1050;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.sidebar-custom.show {
    right: 0;
}

.sidebar-custom.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Masaüstü ve mobilde dropdown menü arka planı siyah */
.dropdown-menu {
    background: #000 !important;
    color: #fff !important;
    border: none;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* Masaüstü için */
.nav-item.dropdown .nav-link::after {
    color: #fff !important; /* Ok işareti beyaz, istersen #fff yerine #000 yapabilirsin */
}

/* Mobil için */
@media (max-width: 991px) {
    .nav-item.dropdown .nav-link::after {
        color: #fff !important; /* Ok işareti beyaz, istersen #fff yerine #000 yapabilirsin */
    }
    .nav-item.dropdown .nav-link[aria-expanded="true"]::after {
        color: #fff !important;
    }
}

.sidebar-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.sidebar-flag {
    width: 40px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin: 0.25rem 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
    margin-right: 1rem;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(10px);
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.sidebar-link span {
    font-size: 1.1rem;
    font-weight: 500;
}

.dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 0.5rem 1.5rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.sidebar-dropdown-menu.show {
    max-height: 200px;
}

.sidebar-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 2rem;
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden;
    touch-action: none;
    position: fixed;
    width: 100%;
}

/* Mobil cihazlarda sidebar açıkken daha iyi scroll kontrolü */
@media (max-width: 768px) {
    body.sidebar-open {
        overflow: hidden !important;
        touch-action: none !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .sidebar-custom {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
}

/* Remove blue outline from back to top button */
#back-to-top button:focus,
#back-to-top button:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mobile navbar collapse animation */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        padding: 80px 20px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-collapse.collapsing {
        right: -100%;
    }
    
    .navbar-collapse.show {
        right: 0;
        animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInRight {
        from {
            right: -100%;
            opacity: 0;
        }
        to {
            right: 0;
            opacity: 1;
        }
    }

    /* Overlay for mobile menu */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile menu items styling */
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    /* Close button for mobile menu */
    .navbar-collapse::after {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1051;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .navbar-collapse::after:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #007bff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 123, 255, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.7);
    background: linear-gradient(135deg, #ffffff, #007bff);
    color: #ffffff;
}

/* Feature icon mobile responsive styles */
@media (max-width: 768px) {
    .feature-icon {
        background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
        color: #007bff !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
        border: 2px solid rgba(0, 123, 255, 0.4) !important;
    }
    
    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #ffffff, #007bff) !important;
        color: #ffffff !important;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.6) !important;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
        color: #007bff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
        border: 2px solid rgba(0, 123, 255, 0.5) !important;
    }
    
    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #ffffff, #007bff) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.7) !important;
    }
}

.section-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.business-section {
    background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><polygon points="20 0 40 20 20 40 0 20"/></g></svg>') repeat;
    animation: float 15s ease-in-out infinite reverse;
}

.business-feature {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.business-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: all 0.5s ease;
}

.business-feature:hover::before {
    left: 100%;
}

.business-feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.3);
}

.footer {
    background: transparent;
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Special effects for footer area to highlight map background */
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: -1;
    pointer-events: none;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer .container {
        margin: 0 15px;
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer::before {
        top: -30px;
        height: 30px;
    }
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .liquid-morph {
        width: 120px !important;
        height: 120px !important;
    }
    
    .particle {
        width: 4px;
        height: 4px;
    }
    
    .glow-orb {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .liquid-morph {
        width: 80px !important;
        height: 80px !important;
    }
    
    .glow-orb {
        width: 40px;
        height: 40px;
    }
}

/* Map Container and Turkey Map Styles */
.map-container {
    position: relative;
    z-index: 10;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.turkey-map {
    width: 100%;
    height: auto;
    max-width: 600px;
    filter: drop-shadow(0 4px 20px rgba(0, 123, 255, 0.2));
    transition: transform 0.3s ease;
}

.turkey-map:hover {
    transform: scale(1.02);
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 11;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .map-container {
        padding: 15px;
        margin-top: 30px;
    }
    
    .turkey-map {
        max-width: 100%;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
        bottom: 10px;
    }
    
    .legend-item {
        font-size: 12px;
    }
}

.feature-card h4,
.feature-card p {
    color: #fff !important;
}

.how-it-works-flow {
    margin-top: 40px;
}

.step-plain {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 18px 0 18px;
    min-width: 200px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-plain h4 {
    color: #fff;
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.step-plain p {
    color: #e3e3e3;
    font-size: 1.08rem;
    margin-bottom: 0;
}

.arrow-straight {
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.turkey-map-bg {
    opacity: 0.3 !important;
}

/* Additional styles for turkey-map-svg */
.turkey-map-svg {
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .turkey-map-bg {
        opacity: 0.35 !important; /* Increased opacity for better visibility */
    }
    
    .turkey-map-svg {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    }
}

@media (max-width: 768px) {
    .turkey-map-bg {
        opacity: 0.4 !important; /* Further increased for mobile */
    }
    
    .turkey-map-svg {
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
    }
}

@media (max-width: 992px) {
    .how-it-works-flow {
        flex-direction: column !important;
        gap: 0;
    }
    .arrow-straight {
        transform: rotate(90deg);
        margin: 0 0 20px 0;
    }
    .step-plain {
        margin-bottom: 18px;
    }
    .star-glow {
        fill: #fffbe6;
        stroke: #d8d8d7;
        stroke-width: 2;
        filter: drop-shadow(0 0 12px #cccccc) drop-shadow(0 0 24px #dcdcdb);
        opacity: 0.85;
        animation: star-blink 1.8s infinite alternate;
    }
    @keyframes star-blink {
        0% { opacity: 0.7; }
        50% { opacity: 1; }
        100% { opacity: 0.7; }
    }
    .sidebar-custom {
        /* ...diğer stiller... */
        background: #000 !important;
    }
}

/* Animasyonlu SVG arka plan için responsive ve modern stiller */
.business-hero-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .business-hero-bg {
        height: 100vw;
        min-height: 320px;
        opacity: 0.5;
    }
}
body.isletme-page .hero-section .hero-content {
    position: relative;
    z-index: 2;
}
body.isletme-page .hero-section {
    position: relative;
    overflow: hidden;
}