
        :root {
            --dark-gray: #222222;
            --text-color: #000000;
            --accent-color: #c19a6b;
            --hover-color: #d4a574;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            background: #f5f5f5;
            padding: 50px 0;
        }

        .footer {
            background-color: var(--dark-gray);
            color: var(--text-color);
      
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--hover-color));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            
        }

        .footer-content {
            display: flex;
      justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
        }

        .footer-section h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        

        @media (max-width: 768px) {
            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .footer-about {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo {
            width: 120px;
            height: auto;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .footer-logo:hover {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(25deg);
        }

        .footer-about p {
            color: white;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: 0;
           color: white;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 25px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
           color: white;
            font-size: 0.95rem;
        }

        .footer-contact i {
            color: white;
            width: 18px;
            text-align: center;
            font-size: 1rem;
        }

        .footer-contact a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
           color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        .footer-bottom p {
            color: rgb(255, 255, 255);
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
           color: white;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
        }

        .footer-services {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .service-item {
            color: white;
            font-size: 0.95rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            color: white;
            padding-left: 10px;
        }

        .service-item:last-child {
            border-bottom: none;
        }

    


