/*FOOTER*/
 footer {
            background-color: #2a2a2a;
            color: #ffffff;
            padding: 50px 20px 30px;
            width: 100%;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background-color: #3a3a3a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon.facebook:hover {
            background-color: #007ffb;
        }

        .social-icon.tiktok:hover {
            background-color: #d12ae1;
        }

        .social-icon.youtube:hover {
            background-color: #fe8a00;
        }

        .social-icon.instagram:hover {
            background-color: #d1b699;
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
        }

        .address-text {
            line-height: 1.8;
            color: #cccccc;
            font-size: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 15px;
            padding: 15px;
            background-color: #3a3a3a;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            background-color: #019f6e;
            transform: translateX(5px);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #019f6e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item:hover .contact-icon {
            background-color: #ffffff;
        }

        .contact-icon svg {
            width: 20px;
            height: 20px;
            fill: #ffffff;
        }

        .contact-item:hover .contact-icon svg {
            fill: #019f6e;
        }

        .contact-text {
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
        }

        .footer-bottom {
            border-top: 1px solid #3a3a3a;
            padding-top: 25px;
            text-align: center;
            color: #888888;
            font-size: 14px;
        }

    