/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 35px);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* ===== BUTTON WHITE ===== */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 35px);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
    white-space: nowrap;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

.btn-white:active {
    transform: translateY(0);
}

/* ===== BUTTON SECONDARY ===== */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 35px);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    text-align: center;
    min-height: 44px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 58, 92, 0.2);
}

/* ===== BUTTON SIZES ===== */
.btn-sm {
    padding: clamp(6px, 0.8vw, 8px) clamp(15px, 1.5vw, 20px);
    font-size: clamp(0.7rem, 0.8vw, 0.85rem);
    min-height: 36px;
}

.btn-lg {
    padding: clamp(14px, 1.8vw, 18px) clamp(30px, 4vw, 45px);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    min-height: 54px;
}

/* ===== BUTTON BLOCK ===== */
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .btn-primary,
    .btn-white,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 40px;
        white-space: normal;
        word-break: break-word;
    }
    
    .btn-sm {
        padding: 6px 14px;
        font-size: 0.75rem;
        min-height: 32px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

/* ===== RESPONSIVE SMALL MOBILE ===== */
@media (max-width: 480px) {
    .btn-primary,
    .btn-white,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-height: 36px;
        border-radius: 25px;
    }
    
    .btn-sm {
        padding: 5px 12px;
        font-size: 0.7rem;
        min-height: 28px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 42px;
    }
}