/* Explain: App-specific component classes */
.btn-gold {
    background: linear-gradient(135deg, #C8A24A 0%, #A68336 100%);
    color: #ffffff;
    border: none;
    transition: all 0.4s ease;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #A68336 0%, #876928 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(200, 162, 74, 0.4);
}
.btn-outline-gold {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    transition: all 0.4s ease;
}
.btn-outline-gold:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.08), 0 10px 15px -6px rgba(0, 0, 0, 0.04);
}
.glass-panel {
    background: rgba(11, 30, 53, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gold-text-gradient {
    background: linear-gradient(135deg, #E8C87A 0%, #C8A24A 50%, #A68336 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}