
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
        
        .containerm {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px auto 20px auto;
        }
        
        .footer {
            background: linear-gradient(145deg, #8B0000 0%, #6A0C0C 100%);
            color: #fff;
            border-radius: 15px 15px 0 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            overflow: hidden;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
            z-index: 10;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 50px 40px 30px;
            position: relative;
            z-index: 1;
        }
        
        .footer-section {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
            padding-right: 30px;
        }
        
        .footer-section:last-child {
            padding-right: 0;
        }
        
        .footer-section h3 {
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, transparent);
            border-radius: 3px;
        }
        
        .footer-section p {
            line-height: 1.7;
            margin-bottom: 20px;
            color: #f0f0f0;
        }
        
        .hotel-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .hotel-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .hotel-list li::before {
            content: '★';
            position: absolute;
            left: 0;
            color: #FFD700;
            font-size: 14px;
        }
        
        .hotel-list li:hover {
            transform: translateX(5px);
        }
        
        .hotel-list li a {
            color: #fff;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }
        
        .hotel-list li a:hover {
            color: #FFD700;
        }
        
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 12px 15px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .contact-info:hover {
            background: rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }
        
        .contact-info i {
            margin-right: 15px;
            color: #FFD700;
            font-size: 18px;
            margin-top: 3px;
            min-width: 20px;
        }
        
        .contact-details p {
            margin-bottom: 5px;
        }
        
        .contact-details .location-title {
            font-weight: 600;
            color: #FFD700;
            margin-bottom: 5px;
        }
        
        .quick-links {
            list-style: none;
            margin-left: 5%;
        }
        
        .quick-links li {
            margin-bottom: 12px;
        }
        
        .quick-links li a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 8px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .quick-links li a:hover {
            color: #FFD700;
            padding-left: 10px;
            border-bottom-color: #FFD700;
        }
        
        .quick-links li a i {
            margin-right: 12px;
            color: #FFD700;
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            margin-top: 25px;
            margin-left: 5%;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(0, 0, 0, 0.3);
            margin-right: 12px;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 50%;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-links a:hover::before {
            opacity: 1;
        }
        
        .social-links a:hover i {
            color: #8B0000;
            z-index: 1;
            position: relative;
        }
        
        .social-links a i {
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 25px 40px;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 15px;
            color: #e0e0e0;
        }
        
        .hotel-name {
            font-weight: bold;
            color: #FFD700;
            letter-spacing: 1px;
        }
        
        .footer-pattern {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            opacity: 0.05;
            background: radial-gradient(circle, #FFD700 0%, transparent 70%);
            pointer-events: none;
        }
        
        @media (max-width: 992px) {
            .footer-content {
                padding: 40px 30px 20px;
            }
            
            .footer-section {
                padding-right: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                padding: 30px 25px 15px;
            }
            
            .footer-section {
                padding-right: 0;
                margin-bottom: 35px;
            }
            
            .footer-section:last-child {
                margin-bottom: 0;
            }
        }
        .image-footer-logo {
            width: 100px;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }