        /* Footer CSS */
/*      footer {
            background: #1a1a1a;
            color: #fff;
            padding: 40px 20px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        .footer-content {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .footer-logo img {
            height: 80px;
            margin-right: 10px;
        }

        nav.footer-nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .footer-link {
            color: #ccc;
            text-decoration: none;
            position: relative;
            font-size: 1rem;
            padding-bottom: 4px;
            transition: color 0.3s ease;
        }

        .footer-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            background: #f09433;
            width: 0;
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: #f09433;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 1px solid #c72b2b;
            padding-bottom: 20px;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .social-icon {
            position: relative;
            font-size: 26px;
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
            transition: transform 0.3s ease;
            
          }

          .social-icon::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: -4px;
            left: 0;
            background:#f09433;
            transition: width 0.3s ease;
          }
          
          .social-icon:hover {
            transform: rotate(3600deg) scale(1.2);
            color: #f09433; /* Instagram rengine benzer */

        
          
          /*.social-icon:hover::after {
            width: 100%; */
          
          footer {
            background: #1a1a1a;
            color: #fff;
            padding: 40px 20px;
          }
          
          .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 2px solid #c72b2b;
            padding-bottom: 20px;
          }
          
          .footer-logo img {
            height: 60px;
            width: 100%;
            }
            
           .footer-logo a:hover {
              color: #f09433;
          }
          
          .footer-menu {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
          }
          
          .footer-menu a {
            color: #d4d4d4;
            text-decoration: none;
            font-size: 16px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
          }
          
          .footer-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            background: #f09433;
            transition: width 0.3s ease;
          }
          
          .footer-menu a:hover::after {
            width: 100%;
          }
          
          .footer-menu a:hover {
            color: #f09433;
          }
          
          .social-icons {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
          }
          
          .social-icons a {
            display: inline-block;
            width: 32px;
            height: 32px;
          }
          
          .social-icons img {
            width: 26px;
            height: 26px;
            margin-left: 10px;
            transition: transform 0.5s ease;
            object-fit: contain;
          }
          
          .social-icons img:hover {
            transform: rotate(360deg) scale(1.2);
          }
          
          .footer-bottom {
            text-align: center;
            font-size: 14px;
            margin-top: 10px;
            color: #aaa;
          }
          
          @media (max-width: 768px) {
            .footer-top {
              flex-direction: column;
              text-align: center;
            }
          
            .footer-menu,
            .social-icons {
              margin-top: 15px;
              justify-content: center;
            }
          }
          
          
          @media (max-width: 600px) {
            .footer-top {
              flex-direction: column;
              align-items: flex-start;
              gap: 20px;
            }
          
            .footer-menu {
              justify-content: flex-start;
              gap: 15px;
            }
          
            .social-icons {
              justify-content: flex-start;
            }
          }
          .scroll-button {
            position: fixed;
            z-index: 100;
            background-color: #029e3e;
            color: #ffffff;
            border: 2px solid #0a3f00;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            display: none;
            cursor: pointer;
        }

        .scroll-button.up {
            left: 10px;
            bottom: 70px;
        }

        .scroll-button:hover {
            background-color: #0fd64b;
        }
          