body {
    font-family: 'Outfit', sans-serif !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(252, 163, 17, 0.2);
    border-color: rgba(252, 163, 17, 0.4);
}

.featured-glass {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(252, 163, 17, 0.05) 100%);
    border: 1px solid rgba(252, 163, 17, 0.3);
    box-shadow: 0 4px 30px rgba(252, 163, 17, 0.15);
}

.featured-glass:hover {
    box-shadow: 0 10px 40px rgba(252, 163, 17, 0.4);
    border-color: rgba(252, 163, 17, 0.6);
}

.glass-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fca311;
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.glass-btn:hover {
    background: #fca311;
    color: #0b0c10;
    box-shadow: 0 0 15px rgba(252, 163, 17, 0.6);
}

.featured-glass .glass-btn {
    background: #fca311;
    color: #0b0c10;
    box-shadow: 0 0 15px rgba(252, 163, 17, 0.4);
}

.featured-glass .glass-btn:hover {
    background: #e5940e;
    box-shadow: 0 0 25px rgba(252, 163, 17, 0.8);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 163, 17, 0.2);
    box-shadow: 0 0 20px rgba(252, 163, 17, 0.1);
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(252, 163, 17, 0.3);
}

.services-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2.5rem;
    }
}
