/* ankaracocukpsikiyatrisi.com.tr — tema stilleri (layout'tan çıkarıldı, önbelleklenebilir) */
        
        /* Global button styles */
        .btn-primary {
            background: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }
        
        .btn-primary:hover {
            background: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
        }
        
        /* Text colors */
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Backgrounds */
        .bg-gradient-primary {
            background: var(--gradient-primary) !important;
        }
        
        .bg-primary {
            background: var(--primary-color) !important;
        }
        
        /* Modern Navbar Styles */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background: var(--gradient-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* MÜKEMMEL MODERN NAVBAR */
        .modern-navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-soft);
            position: fixed !important;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            width: 100%;
        }

        @media (max-width: 991px) {
            .modern-navbar {
                position: relative !important;
            }
            .modern-navbar .container {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
            }
            .navbar-brand {
                order: 1 !important;
            }
            .navbar-toggler {
                order: 2 !important;
                margin-left: auto !important;
            }
        }

        .modern-navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-medium);
            padding: 0.25rem 0;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--logo-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 0.75rem;
                align-items: flex-start;
            }
            .navbar-brand img {
                height: 45px !important;
            }
        }

        .navbar-brand i {
            background: linear-gradient(135deg, var(--logo-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 0.5rem;
        }

        /* MÜKEMMEL MOBİL HAMBURGER MENU */
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
            font-size: 1.25rem;
            border-radius: 8px;
            background: var(--gradient-primary);
            color: white;
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
        }

        .navbar-toggler:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* NAVIGATION LINKS - CORPORATE PROFESSIONAL STYLE */
        .navbar-nav {
            align-items: center;
            gap: 0.25rem;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            letter-spacing: 0.025em;
            border: 1px solid transparent;
        }

        .navbar-nav .nav-link i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            color: var(--primary-color);
            transform: translateY(-1px);
            border-color: rgba(102, 126, 234, 0.2);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }

        .navbar-nav .nav-link:hover i {
            opacity: 1;
            transform: scale(1.1);
        }

        /* RANDEVU BUTONU - NAZİK VE SOFT */
        .navbar-nav .appointment-btn {
            background: rgba(255, 255, 255, 0.95) !important;
            color: #4a5568 !important;
            font-weight: 500 !important;
            padding: 0.6rem 1rem !important;
            border-radius: 15px !important;
            border: 1px solid rgba(74, 85, 104, 0.15) !important;
            letter-spacing: 0.1px !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
            position: relative !important;
            margin-left: 6px !important;
            transition: all 0.25s ease !important;
        }

        .navbar-nav .appointment-btn:hover {
            background: rgba(255, 255, 255, 1) !important;
            color: #2d3748 !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
            border-color: rgba(74, 85, 104, 0.25) !important;
        }

        .navbar-nav .appointment-btn i {
            color: #4a5568 !important;
            font-size: 0.85rem !important;
            transition: all 0.25s ease !important;
        }

        .navbar-nav .appointment-btn:hover i {
            color: #2d3748 !important;
        }

        .navbar-nav .nav-link.active {
            background: var(--menu-active-bg);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .navbar-nav .nav-link.active i {
            opacity: 1;
        }

        /* CORPORATE DROPDOWN MENUS */
        .dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(102, 126, 234, 0.1);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 0.75rem 0;
            margin-top: 0.5rem;
            min-width: 220px;
            animation: dropdownFade 0.2s ease-out;
        }

        @keyframes dropdownFade {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            padding: 0.75rem 1.25rem;
            color: var(--dark-color);
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            letter-spacing: 0.025em;
        }

        .dropdown-item i {
            margin-right: 0.75rem;
            font-size: 0.85rem;
            opacity: 0.7;
            transition: all 0.3s ease;
            width: 16px;
            text-align: center;
        }

        .dropdown-item:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            color: var(--primary-color);
            transform: translateX(4px);
        }

        .dropdown-item:hover i {
            opacity: 1;
            transform: scale(1.1);
            color: var(--primary-color);
        }

        .dropdown-item:active {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
        }

        /* MULTI-LEVEL DROPDOWN SUPPORT */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
            margin-left: -1px;
            border-radius: 12px;
        }

        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }

        .dropdown-submenu > .dropdown-item-text::after {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 1rem;
            opacity: 0.5;
            font-size: 0.75rem;
            transition: all 0.3s ease;
        }

        .dropdown-submenu:hover > .dropdown-item-text::after {
            opacity: 1;
            transform: translateX(2px);
        }

        /* DROPDOWN DIVIDER STYLING */
        .dropdown-divider {
            height: 1px;
            margin: 0.5rem 1rem;
            background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.2) 50%, transparent 100%);
            border: none;
        }

        /* DROPDOWN TOGGLE ARROW */
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 0.5rem;
            vertical-align: 0.1em;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
            transition: all 0.3s ease;
        }

        .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }

        /* TELEFON NUMARASI MODERN TASARIM */
        .nav-link.phone-link {
            background: rgba(255, 255, 255, 0.95) !important;
            color: var(--primary-color) !important;
            font-weight: 600;
            border-radius: 12px;
            padding: 0.65rem 1.25rem;
            margin-left: 0.75rem;
            border: 2px solid rgba(102, 126, 234, 0.2);
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .nav-link.phone-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .nav-link.phone-link:hover::before {
            left: 100%;
        }

        .nav-link.phone-link:hover {
            background: var(--gradient-primary) !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }

        .nav-link.phone-link:focus,
        .nav-link.phone-link:active {
            background: rgba(255, 255, 255, 0.95) !important;
            color: var(--primary-color) !important;
            transform: translateY(0);
        }

        .nav-link.phone-link::after {
            display: none;
        }

        .nav-link.phone-link i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .nav-link.phone-link:hover i {
            animation: phoneRing 0.6s ease-in-out;
        }

        @keyframes phoneRing {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        /* WHATSAPP FLOATING BUTTON */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .whatsapp-float:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            color: white;
            background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
        }

        .whatsapp-float i {
            font-size: 1.8rem;
            animation: pulse 2s infinite;
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .whatsapp-float:hover::before {
            opacity: 1;
            animation: rotate 2s linear infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* WhatsApp Tooltip */
        .whatsapp-float .tooltip-text {
            visibility: hidden;
            width: 140px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 8px;
            padding: 8px;
            position: absolute;
            z-index: 1;
            bottom: 70px;
            right: 0;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .whatsapp-float .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            right: 20px;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

        .whatsapp-float:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        /* Main Content */
        .main-content {
            margin-top: 70px !important;
            min-height: calc(100vh - 70px);
            padding-top: 0;
        }

        @media (max-width: 991px) {
            .main-content {
                margin-top: 20px !important;
            }
        }

        /* MÜKEMMEL MODERN FOOTER */
        .modern-footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            position: relative;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        }

        .footer-section h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            font-size: 1.1rem;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.75rem;
            padding: 0.25rem 0;
            border-radius: 4px;
        }

        .footer-section a:hover {
            color: white;
            transform: translateX(8px);
            background: rgba(255, 255, 255, 0.05);
            padding-left: 1rem;
        }

        /* MÜKEMMEL SOCIAL MEDIA İKONLARI */
        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transform: scale(0);
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .social-link:hover::before {
            transform: scale(1);
        }

        .social-link i {
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Utility Classes */
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-modern {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.6s ease;
        }

        .btn-modern:hover::before {
            left: 100%;
        }

        html {
            scroll-behavior: smooth;
        }

        /* CORPORATE MOBILE RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .navbar-nav .nav-link {
                font-size: 0.9rem;
                padding: 0.6rem 0.8rem;
            }
            
            .dropdown-menu {
                min-width: 200px;
            }
        }
        
        /* 768px-991px arası ekranlar için navbar margin */
        @media (min-width: 769px) and (max-width: 991px) {
            .main-content {
                margin-top: 75px !important;
            }
            
            /* Ana sayfa hero section için özel kural */
            .main-content .hero-section {
                margin-top: -75px !important;
                padding-top: calc(3rem + 75px) !important;
            }
        }

        @media (max-width: 991px) {
            .main-content {
                margin-top: 75px !important;
            }
            
            /* Ana sayfa hero section için özel kural */
            .main-content .hero-section {
                margin-top: -75px !important;
                padding-top: calc(3rem + 75px) !important;
            }
            
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                padding: 1rem;
                margin-top: 0.75rem;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(102, 126, 234, 0.1);
            }
            
            .navbar-nav {
                gap: 0;
                flex-direction: column;
                width: 100%;
            }
            
            .navbar-nav .nav-item {
                width: 100%;
                margin-bottom: 2px;
            }
            
            .navbar-nav .nav-link {
                padding: 0.9rem 1rem;
                margin: 0;
                border-radius: 8px;
                text-align: left;
                background: white;
                border: 1px solid #e2e8f0;
                width: 100%;
                justify-content: flex-start;
                font-size: 0.95rem;
                font-weight: 500;
                color: #334155;
                transition: all 0.2s ease;
                position: relative;
                overflow: visible;
                margin-bottom: 0;
            }
            
            .navbar-nav .nav-link:hover {
                background: #667eea;
                color: white;
                border-color: #667eea;
                transform: none;
                box-shadow: none;
            }
            
            /* MOBİL RANDEVU BUTONU */
            .navbar-nav .appointment-btn {
                background: rgba(255, 255, 255, 0.95) !important;
                color: #4a5568 !important;
                font-weight: 500 !important;
                border: 1px solid rgba(74, 85, 104, 0.15) !important;
                margin-top: 6px !important;
                text-align: center !important;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
            }
            
            .navbar-nav .appointment-btn:hover {
                background: rgba(255, 255, 255, 1) !important;
                color: #2d3748 !important;
                border-color: rgba(74, 85, 104, 0.25) !important;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
            }
            
            .navbar-nav .appointment-btn i {
                color: #4a5568 !important;
            }
            
            .navbar-nav .appointment-btn:hover i {
                color: #2d3748 !important;
            }
            
            .navbar-nav .nav-link i {
                margin-right: 0.75rem;
                font-size: 0.9rem;
                opacity: 0.7;
                color: inherit;
                transition: all 0.2s ease;
                width: 16px;
                text-align: center;
            }
            
            .navbar-nav .nav-link:hover i {
                opacity: 1;
                color: white;
                transform: none;
            }
            
            /* Mobile dropdown styling - ÇOK TEMİZ */
            .dropdown-menu {
                background: transparent;
                border: none;
                box-shadow: none;
                padding: 0;
                margin: 0;
                position: static !important;
                transform: none !important;
                width: 100%;
                display: none !important; /* Hidden by default - FORCE */
                z-index: 1 !important;
            }
            
            .dropdown-menu.show {
                display: block !important; /* Show when toggled - FORCE */
                z-index: 2 !important;
            }
            
            .dropdown-item {
                background: #f8fafc;
                border: 1px solid #e2e8f0;
                border-top: none;
                margin: 0;
                border-radius: 0;
                padding: 0.8rem 1rem;
                text-align: left;
                margin-left: 0;
                margin-right: 0;
                font-size: 0.9rem;
                color: #475569;
                opacity: 1;
                box-shadow: none;
                backdrop-filter: none;
                transition: all 0.2s ease;
                position: relative;
                overflow: visible;
            }
            
            .dropdown-item:first-child {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }
            
            .dropdown-item:last-child {
                border-bottom-left-radius: 6px;
                border-bottom-right-radius: 6px;
            }
            
            .dropdown-item i {
                margin-right: 0.75rem;
                opacity: 0.6;
                width: 16px;
                text-align: center;
                font-size: 0.85rem;
                color: #667eea;
                transition: all 0.2s ease;
            }
            
            .dropdown-item:hover {
                background: #667eea;
                color: white;
                transform: none;
                box-shadow: none;
                border-color: #667eea;
            }
            
            .dropdown-item:hover i {
                opacity: 1;
                color: white;
                transform: none;
            }
            
            /* Dropdown toggle parent styling */
            .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
                border-bottom: none;
            }
            
            .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"] {
                background: #667eea;
                color: white;
                border-color: #667eea;
            }
            
            .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"] i {
                color: white;
                opacity: 1;
            }
            
            /* Mobile phone link styling - TEMİZ */
            .nav-link.phone-link {
                background: #10b981 !important;
                color: white !important;
                margin-top: 0.5rem;
                text-align: center;
                font-weight: 600;
                border: 1px solid #10b981 !important;
                border-radius: 8px;
                box-shadow: none;
                backdrop-filter: none;
                padding: 0.9rem 1rem;
            }
            
            .nav-link.phone-link:hover {
                background: #059669 !important;
                color: white !important;
                transform: none;
                box-shadow: none;
                border-color: #059669 !important;
            }
            
            .nav-link.phone-link i {
                color: white;
                opacity: 1;
                margin-right: 0.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .modern-navbar {
                padding: 0.5rem 0;
            }
            
            .navbar-brand {
                font-size: 1.2rem;
            }
            
            .navbar-brand i {
                font-size: 1.1rem;
            }
            
            .main-content {
                margin-top: 65px !important;
            }
            
            /* Ana sayfa hero section için özel kural */
            .main-content .hero-section {
                margin-top: -65px !important;
                padding-top: calc(2.5rem + 65px) !important;
            }
            
            /* FOOTER MOBİL OPTİMİZASYONU */
            .modern-footer {
                padding: 3rem 0 1.5rem;
                margin-top: 3rem;
            }
            
            .footer-section {
                margin-bottom: 2rem;
                text-align: center;
            }
            
            .footer-section h5 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .footer-section h5::after {
                left: 50%;
                transform: translateX(-50%);
                width: 30px;
            }
            
            .social-links {
                justify-content: center;
                gap: 1rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
            }
            
            .social-link i {
                font-size: 1.2rem;
            }
            
            .footer-bottom {
                margin-top: 2rem;
                padding-top: 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 1.1rem;
            }
            
            .navbar-collapse {
                padding: 1rem;
                margin-top: 0.5rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .modern-footer {
                padding: 2rem 0 1rem;
            }
            
            .footer-section {
                margin-bottom: 1.5rem;
            }
            
            .social-links {
                gap: 0.75rem;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
            }
        }

        /* HERO SECTION FIX FOR MOBILE */
        @media (max-width: 768px) {
            .display-3 {
                font-size: 2rem !important;
                line-height: 1.2 !important;
            }
            
            .lead {
                font-size: 1rem !important;
            }
            
            .hero-section {
                padding: 4rem 0 2rem !important;
            }
            
            .hero-content h1 {
                margin-bottom: 1.5rem !important;
            }
            
            .hero-buttons {
                gap: 0.75rem;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
                padding: 0.75rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .display-3 {
                font-size: 1.6rem !important;
                line-height: 1.1 !important;
            }
            
            .lead {
                font-size: 0.9rem !important;
                line-height: 1.4 !important;
            }
            
            .hero-section {
                padding: 3rem 0 1.5rem !important;
            }
        }

        /* MOBİL RESPONSİVE WHATSAPP */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-float i {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-float i {
                font-size: 1.4rem;
            }
        }

        /* Modern ve çok seviyeli menü için ek CSS */
        .navbar-nav > .nav-item.dropdown:hover > .dropdown-menu {
            display: block;
            margin-top: 0;
        }
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }
        .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
            min-width: 200px;
        }
        .dropdown-menu {
            transition: all 0.2s;
        }
        .dropdown-submenu > a:after {
            content: "\f105";
            font-family: 'FontAwesome';
            float: right;
            margin-left: 8px;
            font-weight: normal;
        }
        @media (max-width: 991px) {
            .navbar-nav .dropdown-menu {
                position: static !important;
                float: none;
            }
            /* ALT MENÜLER HER ZAMAN KAPALI BAŞLASIN */
            .dropdown-submenu > .dropdown-menu {
                left: 0;
                top: 100%;
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                height: 0 !important;
                overflow: hidden !important;
                position: static !important;
            }
            .dropdown-submenu > .dropdown-menu.show {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                height: auto !important;
                overflow: visible !important;
            }
            
            /* TÜM ALT MENÜLER ZORLA KAPALI */
            .navbar-nav .dropdown-menu .dropdown-menu,
            .navbar-nav .dropdown-submenu .dropdown-menu {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                height: 0 !important;
                overflow: hidden !important;
            }
            
            /* SADECE .show CLASS'I OLANLAR AÇIK */
            .navbar-nav .dropdown-submenu .dropdown-menu.show {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                height: auto !important;
                overflow: visible !important;
                z-index: 9999 !important;
            }
        }
