.footer-gradient {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
        }
        
        .brand-color {
            color: #ff8427 !important;
        }
        
        .brand-bg {
            background-color: #ff8427 !important;
        }
        
        .footer-link {
            color: #adb5bd !important;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-link:hover {
            color: #ff8427 !important;
            transform: translateX(5px);
        }
        
        .footer-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #ff8427;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::before {
            width: 100%;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 132, 39, 0.1);
            border: 1px solid rgba(255, 132, 39, 0.3);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: #ff8427;
            border-color: #ff8427;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 132, 39, 0.4);
        }
        
        .contact-card {
            background: rgba(255, 132, 39, 0.1);
            border: 1px solid rgba(255, 132, 39, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            background: rgba(255, 132, 39, 0.15);
            border-color: rgba(255, 132, 39, 0.4);
            transform: translateY(-2px);
        }
        
        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 132, 39, 0.3);
            color: white;
        }
        
        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #ff8427;
            box-shadow: 0 0 0 0.2rem rgba(255, 132, 39, 0.25);
            color: white;
        }
        
        .newsletter-input::placeholder {
            color: #adb5bd;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #ff8427, #ffb366);
            border-radius: 2px;
        }
        
        .icon-wrapper {
            width: 40px;
            height: 40px;
            background: rgba(255, 132, 39, 0.15);
            border: 1px solid rgba(255, 132, 39, 0.3);
        }