/* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 20px 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-about h3 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--primary);
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: rgba(255,255,255,0.8);
        }
        
        .contact-info i {
            color: var(--primary);
            width: 20px;
        }
        
        /* Footer Map Section */
        .footer-map-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 50px;
            padding-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-map {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            height: 300px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .footer-map-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .footer-map-info h4 {
            color: var(--primary);
            font-size: 22px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-map-info p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .footer-hours {
            margin: 20px 0;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .footer-hours i {
            color: var(--primary);
            margin-right: 8px;
        }
        
        .footer-directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.2);
            width: fit-content;
        }
        
        .footer-directions-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-directions-btn i {
            font-size: 18px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-map-section {
                grid-template-columns: 1fr;
            }
            
            .footer-map {
                height: 250px;
            }
        }