/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: #121212;
}

::-webkit-scrollbar-track {
    background: #1E1E1E;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D4AF37, #8E7021);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F9E29C;
}

/* Text Gold Gradient Animation */
.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37, #F9E29C, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Navigation Links */
.nav-link {
    color: #C0C0C0;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-link:hover {
    color: #F9E29C;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s;
    box-shadow: 0 0 8px #D4AF37;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Links */
.mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #E5E4E2;
    font-weight: 700;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s;
    text-decoration: none;
}

.mobile-link:hover {
    color: #D4AF37;
    background-color: rgba(18,18,18,0.5);
}

.mobile-link-btn {
    display: block;
    background: linear-gradient(135deg, #D4AF37 0%, #F9E29C 50%, #B5922B 100%);
    color: #121212;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 14px rgba(212,175,55,0.4);
    text-decoration: none;
}

/* Service Cards */
.service-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border: 1px solid #2D2D2D;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #D4AF37;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #D4AF37;
    transition: height 0.5s;
}

.service-card:hover::before {
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #F9E29C;
}

.service-desc {
    color: #9CA3AF;
    line-height: 1.625;
    transition: color 0.3s;
}

.service-card:hover .service-desc {
    color: #E5E7EB;
}

.icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #D4AF37, #8E7021);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Footer Items */
.social-btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.social-btn:hover {
    border-color: #D4AF37;
    background-color: #D4AF37;
    color: #121212;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: #D4AF37;
}

.footer-link {
    color: #9CA3AF;
    display: block;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-link:hover {
    color: #D4AF37;
    transform: translateX(-5px);
}

.phone-link {
    color: #D1D5DB;
    font-family: monospace;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-align: right;
    transition: color 0.3s;
    text-decoration: none;
    display: block;
}

.phone-link:hover {
    color: #D4AF37;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #1E1E1E;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
}

.offer-feature:hover {
    border-color: rgba(212,175,55,0.5);
}

.offer-feature span {
    color: #E5E7EB;
}

.contact-icon {
    background-color: rgba(212,175,55,0.1);
    padding: 0.75rem;
    border: 1px solid rgba(212,175,55,0.2);
    transition: border-color 0.3s;
}

.group:hover .contact-icon {
    border-color: #D4AF37;
}