/* ===================================
   ORANGE BUTTON COMPONENT
   Reusable bright orange gradient button
   
   USAGE: Add class "btn-orange" to any element
   Example: <a href="#" class="btn-orange">Click Me</a>
   =================================== */

.btn-orange {
    /* Layout */
    display: inline-block;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    
    /* Typography */
    font-weight: 600;
    font-size: 1em;
    color: white;
    
    /* Visual Styling */
    background: linear-gradient(135deg, #ff8c00 0%, #cc3e13 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
    
    /* Animation */
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #cc3e13 0%, #9e2a0d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 62, 19, 0.4);
    color: white;
}

.btn-orange:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(204, 62, 19, 0.3);
}

/* Size Variants */
.btn-orange.btn-small {
    padding: 8px 20px;
    font-size: 0.9em;
}

.btn-orange.btn-large {
    padding: 16px 40px;
    font-size: 1.1em;
}

/* Compact variant (82% scale - matches business.html rates buttons) */
.btn-orange.btn-compact {
    display: inline-block;
    transform: scale(0.82);
    transform-origin: left center;
    padding: 8px 14px;
    font-weight: 700;
    border-radius: 8px;
}

.btn-orange.btn-compact:hover {
    /* Maintain scale on hover for compact buttons */
    transform: scale(0.82) translateY(-2px);
}

/* Full width variant */
.btn-orange.btn-block {
    display: block;
    width: 100%;
}

/* Disabled state */
.btn-orange:disabled,
.btn-orange.disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-orange:disabled:hover,
.btn-orange.disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
