
        /* Modern Clean Footer Styles */
        .modern-footer {
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
            margin-top: 5rem;
            position: relative;
        }
        
        .footer-content {
            padding: 4rem 0 2rem 0;
        }
        
        .footer-section {
            height: 100%;
        }
        
        /* Brand Section */
        .footer-brand {
            padding-right: 2rem;
        }
        
        .footer-logo {
            max-height: 60px;
            width: auto;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo-text {
            margin-bottom: 1.5rem;
        }
        
        .footer-logo-text .logo-main {
            font-size: 2rem;
            font-weight: 800;
            color: #0e7db8;
            font-family: 'Poppins', sans-serif;
        }
        
        .footer-logo-text .logo-sub {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-left: 0.5rem;
        }
        
        .footer-description {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        
        /* Social Media */
        .footer-social {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .social-link:hover {
            background: #0e7db8;
            color: white;
            border-color: #0e7db8;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(14, 125, 184, 0.3);
        }
        
        /* Section Titles */
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        /* Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        
        .footer-links a {
            color: #6c757d;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #0e7db8;
        }
        
        .footer-links a::before {
            content: '•';
            color: #0e7db8;
            margin-right: 0.5rem;
        }
        
        /* Contact Items */
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .contact-item i {
            width: 18px;
            color: #0e7db8;
            font-size: 0.85rem;
        }
        
        .contact-item span {
            line-height: 1.5;
        }
        
        .contact-item a {
            line-height: 1.5;
            transition: color 0.3s ease;
        }
        
        .contact-item a:hover {
            color: #0e7db8 !important;
        }
        
        
        /* Bottom Section */
        .footer-bottom {
            border-top: 1px solid #e9ecef;
            margin-top: 3rem;
            padding-top: 1.5rem;
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        .footer-bottom a {
            color: #0e7db8;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: #0a6094;
        }
        
    /* Responsive Design */
    @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-brand .footer-logo {
                justify-content: center;
                text-align: center;
            }
            
            .section-title {
                text-align: center;
            }
            
            /* Mobilde tum footer icerigi satir satir ortali */
            .footer-brand {
                padding-right: 0;
                text-align: center;
            }

            .footer-links a {
                justify-content: center;
                text-align: center;
            }

            .footer-contact {
                align-items: center;
            }

            /* Ikon metnin akisinda dursun ki cok satirli adreste kopuk kalmasin */
            .contact-item {
                display: block;
                text-align: center;
                max-width: 300px;
                margin: 0 auto;
            }

            .contact-item i {
                display: inline;
                width: auto;
                margin-right: 0.4rem;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                gap: 2rem;
            }
            
            .footer-brand h5 {
                font-size: 1.4rem;
            }
            
            .footer-brand p {
                font-size: 0.85rem;
            }
        }
        /* Hide decorative floating elements when they're inside the footer to avoid
           the round/blurred circles overlapping footer text (seen on homepage). */
        .modern-footer .floating-element {
            display: none !important;
        }

        /* Add extra spacing under the navbar/logo on small screens so the logo
           doesn't sit too close to following content (mobile header gap). */
        @media (max-width: 576px) {
            .navbar-brand {
                margin-bottom: 10px !important;
            }
            .logo-img {
                height: 56px !important;
                margin-bottom: 8px !important;
            }
        }
    