
.gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #E2C28E 100%);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gold-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}
.button:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.button:hover:after {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}
.stat-counter {
    font-variant-numeric: tabular-nums;
}
.faq-item {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-item summary {
    cursor: pointer;
    padding: 1.5rem;
    position: relative;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #C5A059;
    transition: all 0.3s ease;
}

.faq-item[open] summary:after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.faq-item[open] summary {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C5A059;
    border-radius: 4px;
}

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

/* Selection styles */
::selection {
    background: #C5A059;
    color: white;
}
/* Smooth transitions */
a, button {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Card hover effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Service icon animation */
.service-icon {
    transition: all 0.3s ease;
}

.group:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
}